Skip to content

Commit 251e97e

Browse files
committed
update build.gradle
1 parent 97ad0c3 commit 251e97e

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

app/build.gradle

+15-8
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ apply plugin: 'kotlin-android'
55
apply plugin: 'kotlin-android-extensions'
66

77
android {
8-
compileSdkVersion 28
8+
compileSdkVersion 34
99
defaultConfig {
10-
applicationId 'com.gmail.anubhavdas54.whatsdeleted'
11-
minSdkVersion 23
12-
targetSdkVersion 28
13-
versionCode 5
10+
applicationId 'org.maintainteam.whatsdeleted'
11+
minSdkVersion 21
12+
targetSdkVersion 33
13+
versionCode 6
1414
versionName "0.4.1"
1515
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1616
}
@@ -21,11 +21,18 @@ android {
2121
}
2222
}
2323
compileOptions {
24-
sourceCompatibility JavaVersion.VERSION_1_8
25-
targetCompatibility JavaVersion.VERSION_1_8
24+
sourceCompatibility JavaVersion.VERSION_17
25+
targetCompatibility JavaVersion.VERSION_17
26+
encoding 'utf-8'
2627
}
2728
kotlinOptions {
28-
jvmTarget = '1.8'
29+
jvmTarget = JavaVersion.VERSION_17
30+
}
31+
dependenciesInfo {
32+
// Disables dependency metadata when building APKs.
33+
includeInApk = false
34+
// Disables dependency metadata when building Android App Bundles.
35+
includeInBundle = false
2936
}
3037
}
3138

0 commit comments

Comments
 (0)