mirror of
https://github.com/jrpie/Launcher.git
synced 2025-04-12 23:34:33 +02:00
Compare commits
9 commits
08bf23da18
...
3a55ded29a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
3a55ded29a | ||
![]() |
cf67b5e9f9 | ||
![]() |
a4d3f5c296 | ||
![]() |
8c44ffee61 | ||
![]() |
0cb587960f | ||
![]() |
01801b1735 | ||
![]() |
7eb5e9ac5a | ||
![]() |
81f374ba38 | ||
757486771d |
3 changed files with 13 additions and 3 deletions
|
@ -9,7 +9,14 @@ KEYSTORE_ACCRESCENT_PASS=$(keepassxc-password "android_keys/launcher-accrescent"
|
||||||
|
|
||||||
if [[ $(git status --porcelain) ]]; then
|
if [[ $(git status --porcelain) ]]; then
|
||||||
echo "There are uncommitted changes."
|
echo "There are uncommitted changes."
|
||||||
exit 1
|
|
||||||
|
read -p "Continue anyway? (y/n) " -n 1 -r
|
||||||
|
echo # (optional) move to a new line
|
||||||
|
if ! [[ $REPLY =~ ^[Yy]$ ]]
|
||||||
|
then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm -rf "$OUTPUT_DIR"
|
rm -rf "$OUTPUT_DIR"
|
||||||
|
|
|
@ -43,8 +43,8 @@ android {
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
// minifyEnabled true
|
minifyEnabled true
|
||||||
// proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
applicationIdSuffix = ".debug"
|
applicationIdSuffix = ".debug"
|
||||||
|
|
3
app/proguard-rules.pro
vendored
3
app/proguard-rules.pro
vendored
|
@ -1,4 +1,6 @@
|
||||||
# Add project specific ProGuard rules here.
|
# Add project specific ProGuard rules here.
|
||||||
|
-dontobfuscate
|
||||||
|
-dontoptimize
|
||||||
# You can control the set of applied configuration files using the
|
# You can control the set of applied configuration files using the
|
||||||
# proguardFiles setting in build.gradle.
|
# proguardFiles setting in build.gradle.
|
||||||
#
|
#
|
||||||
|
@ -25,3 +27,4 @@
|
||||||
# This is generated automatically by the Android Gradle plugin.
|
# This is generated automatically by the Android Gradle plugin.
|
||||||
-dontwarn javax.annotation.processing.AbstractProcessor
|
-dontwarn javax.annotation.processing.AbstractProcessor
|
||||||
-dontwarn javax.annotation.processing.SupportedAnnotationTypes
|
-dontwarn javax.annotation.processing.SupportedAnnotationTypes
|
||||||
|
-dontwarn javax.annotation.processing.SupportedSourceVersion
|
||||||
|
|
Loading…
Add table
Reference in a new issue