Skip to content

Commit

Permalink
[Feature] build unsigned apks
Browse files Browse the repository at this point in the history
as will be using public key provided by Tytydraco
  • Loading branch information
Tokito-Kun authored and Tokito-Kun committed Jul 29, 2023
1 parent f158e3f commit 0c45896
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,17 @@ android {
}
}
buildTypes {
release {
debug {
setUnsigned(true)
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
outputFileName = "app-debug.unsigned.apk"
}
release {
setUnsigned(true)
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
outputFileName = "app-release-unsigned.apk"
}
}
compileOptions {
Expand Down

0 comments on commit 0c45896

Please sign in to comment.