Skip to content

Commit 9bb305c

Browse files
committed
update build files
1 parent 97ad0c3 commit 9bb305c

File tree

4 files changed

+30
-15
lines changed

4 files changed

+30
-15
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

gradle.properties

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
android.defaults.buildfeatures.buildconfig=true
2+
android.enableJetifier=false
3+
android.nonFinalResIds=false
4+
android.nonTransitiveRClass=false
5+
android.useAndroidX=true
6+
org.gradle.jvmargs=-Xmx2048M --add-opens jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED
7+
systemProp.file.encoding=utf-8
8+
19
# Project-wide Gradle settings.
210
# IDE (e.g. Android Studio) users:
311
# Gradle settings configured through the IDE *will override*
@@ -6,16 +14,16 @@
614
# http://www.gradle.org/docs/current/userguide/build_environment.html
715
# Specifies the JVM arguments used for the daemon process.
816
# The setting is particularly useful for tweaking memory settings.
9-
org.gradle.jvmargs=-Xmx1536m
17+
##org.gradle.jvmargs=-Xmx1536m
1018
# When configured, Gradle will run in incubating parallel mode.
1119
# This option should only be used with decoupled projects. More details, visit
1220
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1321
# org.gradle.parallel=true
1422
# AndroidX package structure to make it clearer which packages are bundled with the
1523
# Android operating system, and which are packaged with your app's APK
1624
# https://developer.android.com/topic/libraries/support-library/androidx-rn
17-
android.useAndroidX=true
25+
##android.useAndroidX=true
1826
# Automatically convert third-party libraries to use AndroidX
19-
android.enableJetifier=true
27+
##android.enableJetifier=true
2028
# Kotlin code style for this project: "official" or "obsolete":
21-
kotlin.code.style=official
29+
##kotlin.code.style=official

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)