Skip to content

Commit c9c5b38

Browse files
committed
update build files
1 parent 97ad0c3 commit c9c5b38

File tree

3 files changed

+18
-11
lines changed

3 files changed

+18
-11
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

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
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.4.31'
4+
ext.kotlin_version = '1.9.10'
55
repositories {
66
google()
77
jcenter()
88

99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:4.1.2'
11+
classpath 'com.android.tools.build:gradle:8.2.0'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
include ':app'
2-
rootProject.name='WhatsDeleted'
2+
//rootProject.name='WhatsDeleted'

0 commit comments

Comments
 (0)