File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed
Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ android {
1515 versionName " 1.0"
1616 }
1717
18- compileOptions {
18+ compileOptions {
1919 sourceCompatibility JavaVersion . VERSION_17
2020 targetCompatibility JavaVersion . VERSION_17
2121 }
@@ -24,20 +24,25 @@ android {
2424 jvmTarget = ' 17'
2525 }
2626
27- // OR (recommended):
28- // kotlin { jvmToolchain(17) }
27+ signingConfigs {
28+ release {
29+ storeFile file(" ../debug.keystore" )
30+ storePassword " android"
31+ keyAlias " androiddebugkey"
32+ keyPassword " android"
33+ }
34+ }
2935
3036 buildTypes {
3137 release {
3238 minifyEnabled false
39+ signingConfig signingConfigs. release
3340 proguardFiles getDefaultProguardFile(' proguard-android-optimize.txt' ), ' proguard-rules.pro'
3441 }
3542 }
3643}
3744
3845dependencies {
39- // Use LOCAL jar instead of Maven
4046 compileOnly files(' libs/xposed-api-82.jar' )
41-
4247 implementation " org.jetbrains.kotlin:kotlin-stdlib:1.9.0"
4348}
You can’t perform that action at this time.
0 commit comments