File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11apply plugin : ' com.android.application'
22apply plugin : ' kotlin-android'
3- apply plugin : ' kotlin-android-extensions'
43
54def keystorePropertiesFile = rootProject. file(" keystore.properties" )
65def keystoreProperties = new Properties ()
@@ -9,12 +8,13 @@ if (keystorePropertiesFile.exists()) {
98}
109
1110android {
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
6579dependencies {
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}
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
33buildscript {
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
Original file line number Diff line number Diff line change 11android.enableJetifier =true
2+ android.nonTransitiveRClass =false
23android.useAndroidX =true
3-
4+ org.gradle.jvmargs =-Xmx4g
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =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
You can’t perform that action at this time.
0 commit comments