File tree 4 files changed +25
-10
lines changed
4 files changed +25
-10
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
apply plugin : ' kotlin-android'
3
- apply plugin : ' kotlin-android-extensions'
4
3
5
4
def keystorePropertiesFile = rootProject. file(" keystore.properties" )
6
5
def keystoreProperties = new Properties ()
@@ -9,12 +8,13 @@ if (keystorePropertiesFile.exists()) {
9
8
}
10
9
11
10
android {
12
- compileSdkVersion 33
11
+ namespace " com.simplemobiletools.draw.pro"
12
+ compileSdk 34
13
13
14
14
defaultConfig {
15
15
applicationId " com.simplemobiletools.draw.pro"
16
- minSdkVersion 23
17
- targetSdkVersion 33
16
+ minSdk 23
17
+ targetSdk 34
18
18
versionCode 79
19
19
versionName " 6.9.3"
20
20
setProperty(" archivesBaseName" , " draw" )
@@ -32,6 +32,11 @@ android {
32
32
}
33
33
}
34
34
35
+ buildFeatures {
36
+ buildConfig true
37
+ viewBinding true
38
+ }
39
+
35
40
buildTypes {
36
41
debug {
37
42
applicationIdSuffix " .debug"
@@ -45,7 +50,16 @@ android {
45
50
}
46
51
}
47
52
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" ]
49
63
productFlavors {
50
64
core {}
51
65
fdroid {}
@@ -63,6 +77,6 @@ android {
63
77
}
64
78
65
79
dependencies {
66
- implementation ' com.github.SimpleMobileTools:Simple-Commons:4c83ec8740 '
80
+ implementation ' com.github.SimpleMobileTools:Simple-Commons:0e173dc5ad '
67
81
implementation " androidx.print:print:1.0.0"
68
82
}
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
buildscript {
4
- ext. kotlin_version = ' 1.7.10 '
4
+ ext. kotlin_version = ' 1.9.0 '
5
5
6
6
repositories {
7
7
google()
8
8
mavenCentral()
9
9
}
10
10
11
11
dependencies {
12
- classpath ' com.android.tools.build:gradle:7.3 .0'
12
+ classpath ' com.android.tools.build:gradle:8.1 .0'
13
13
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
14
14
15
15
// NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change 1
1
android.enableJetifier =true
2
+ android.nonTransitiveRClass =false
2
3
android.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
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
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
You can’t perform that action at this time.
0 commit comments