Skip to content

Commit fa54c3f

Browse files
committed
fix android package release build.gradle bug
1 parent 9cd3ae0 commit fa54c3f

File tree

1 file changed

+10
-8
lines changed
  • adventure-composer/src/main/resources/projectTmpl/android

1 file changed

+10
-8
lines changed

adventure-composer/src/main/resources/projectTmpl/android/build.gradle

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ android {
1313

1414
instrumentTest.setRoot('tests')
1515

16-
if(project.hasProperty('keystore')) {
16+
17+
}
18+
19+
if(project.hasProperty('keystore')) {
1720
signingConfigs {
1821
release {
1922
storeFile file(project.keystore)
@@ -22,14 +25,13 @@ android {
2225
keyPassword project.keyPassword
2326
}
2427
}
25-
26-
buildTypes {
27-
release {
28-
signingConfig signingConfigs.release
29-
}
30-
}
28+
29+
buildTypes {
30+
release {
31+
signingConfig signingConfigs.release
32+
}
33+
}
3134
}
32-
}
3335
}
3436

3537
// needed to add JNI shared libraries to APK when compiling on CLI

0 commit comments

Comments
 (0)