Skip to content

Commit fa214ac

Browse files
committedAug 17, 2023
enable viewbinding
update compile sdk to 34 update kotlin version to 1.9.0
1 parent aedb86b commit fa214ac

File tree

4 files changed

+25
-10
lines changed

4 files changed

+25
-10
lines changed
 

‎app/build.gradle

+20-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
3-
apply plugin: 'kotlin-android-extensions'
43

54
def keystorePropertiesFile = rootProject.file("keystore.properties")
65
def keystoreProperties = new Properties()
@@ -9,12 +8,13 @@ if (keystorePropertiesFile.exists()) {
98
}
109

1110
android {
12-
compileSdkVersion 33
11+
namespace "com.simplemobiletools.draw.pro"
12+
compileSdk 34
1313

1414
defaultConfig {
1515
applicationId "com.simplemobiletools.draw.pro"
16-
minSdkVersion 23
17-
targetSdkVersion 33
16+
minSdk 23
17+
targetSdk 34
1818
versionCode 79
1919
versionName "6.9.3"
2020
setProperty("archivesBaseName", "draw")
@@ -32,6 +32,11 @@ android {
3232
}
3333
}
3434

35+
buildFeatures {
36+
buildConfig true
37+
viewBinding true
38+
}
39+
3540
buildTypes {
3641
debug {
3742
applicationIdSuffix ".debug"
@@ -45,7 +50,16 @@ android {
4550
}
4651
}
4752

48-
flavorDimensions "variants"
53+
compileOptions {
54+
sourceCompatibility JavaVersion.VERSION_17
55+
targetCompatibility JavaVersion.VERSION_17
56+
}
57+
58+
kotlinOptions {
59+
jvmTarget = '17'
60+
}
61+
62+
flavorDimensions = ["variants"]
4963
productFlavors {
5064
core {}
5165
fdroid {}
@@ -63,6 +77,6 @@ android {
6377
}
6478

6579
dependencies {
66-
implementation 'com.github.SimpleMobileTools:Simple-Commons:4c83ec8740'
80+
implementation 'com.github.SimpleMobileTools:Simple-Commons:0e173dc5ad'
6781
implementation "androidx.print:print:1.0.0"
6882
}

‎build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
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.7.10'
4+
ext.kotlin_version = '1.9.0'
55

66
repositories {
77
google()
88
mavenCentral()
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:7.3.0'
12+
classpath 'com.android.tools.build:gradle:8.1.0'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414

1515
// NOTE: Do not place your application dependencies here; they belong

‎gradle.properties

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
android.enableJetifier=true
2+
android.nonTransitiveRClass=false
23
android.useAndroidX=true
3-
4+
org.gradle.jvmargs=-Xmx4g

‎gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip

0 commit comments

Comments
 (0)
Please sign in to comment.