Skip to content

Commit e3d7360

Browse files
committed
Gradle and Android commit
Gradle commit Updated target SDK to Android 13 (API 33)
1 parent 994549a commit e3d7360

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

app/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33

44
android {
5-
compileSdkVersion 32
5+
compileSdkVersion 33
66

7-
buildToolsVersion "32.1.0-rc1"
7+
buildToolsVersion "33.0.0"
88
defaultConfig {
99
applicationId "com.bharathvishal.textfilegeneratorbenchmark"
1010
minSdkVersion 23
11-
targetSdkVersion 32
11+
targetSdkVersion 33
1212
multiDexEnabled true
13-
versionCode 48
13+
versionCode 49
1414
vectorDrawables.useSupportLibrary = true
15-
versionName "1.6"
15+
versionName "1.7"
1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
1818

@@ -42,15 +42,15 @@ android {
4242
dependencies {
4343
implementation fileTree(dir: 'libs', include: ['*.jar'])
4444
implementation 'com.google.android.material:material:1.7.0-alpha02'
45-
implementation 'com.github.bumptech.glide:glide:4.13.1'
46-
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.1'
45+
implementation 'com.github.bumptech.glide:glide:4.13.2'
46+
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
4747
implementation 'androidx.cardview:cardview:1.0.0'
4848
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
49-
implementation 'androidx.appcompat:appcompat:1.4.1'
50-
implementation 'androidx.core:core-ktx:1.7.0'
49+
implementation 'androidx.appcompat:appcompat:1.4.2'
50+
implementation 'androidx.core:core-ktx:1.8.0'
5151
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
5252
testImplementation 'junit:junit:4.13.2'
5353
androidTestImplementation 'androidx.test:runner:1.4.0'
54-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"
54+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1"
5555
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
5656
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.6.21'
4+
ext.kotlin_version = '1.7.0'
55
repositories {
66
google()
77
mavenCentral()

0 commit comments

Comments
 (0)