mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-09-14 15:17:02 -04:00
Use debug.keystore
This commit is contained in:
parent
4c6cdfd9e1
commit
c6dafb38b5
@ -5,9 +5,20 @@ android {
|
|||||||
dexOptions {
|
dexOptions {
|
||||||
javaMaxHeapSize "4g"
|
javaMaxHeapSize "4g"
|
||||||
}
|
}
|
||||||
|
|
||||||
lintOptions {
|
lintOptions {
|
||||||
abortOnError false
|
abortOnError false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
customDebug {
|
||||||
|
storeFile file("debug.keystore")
|
||||||
|
storePassword "android"
|
||||||
|
keyAlias "androiddebugkey"
|
||||||
|
keyPassword "android"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "net.kdt.pojavlaunch"
|
applicationId "net.kdt.pojavlaunch"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
@ -22,6 +33,12 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
debug {
|
||||||
|
minifyEnabled false
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
|
signingConfig signingConfigs.customDebug
|
||||||
|
}
|
||||||
|
|
||||||
release {
|
release {
|
||||||
// Don't set to true or java.awt will be a.a or something similar.
|
// Don't set to true or java.awt will be a.a or something similar.
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
|
BIN
app/debug.keystore
Normal file
BIN
app/debug.keystore
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user