-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3f8bac
commit 44c0ff9
Showing
2 changed files
with
5 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,19 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
Properties properties = new Properties() | ||
properties.load(rootProject.file("local.properties").newDataInputStream()) | ||
|
||
android { | ||
compileSdkVersion 29 | ||
defaultConfig { | ||
applicationId "ademar.textlauncher" | ||
minSdkVersion 14 | ||
targetSdkVersion 29 | ||
versionCode 5 | ||
versionName "1.2.1" | ||
} | ||
signingConfigs { | ||
release { | ||
keyAlias properties.getProperty("TEXT_LAUNCHER_KEY_ALIAS") | ||
keyPassword properties.getProperty("TEXT_LAUNCHER_KEY_PASSWORD") | ||
storeFile file("../keystore") | ||
storePassword properties.getProperty("TEXT_LAUNCHER_STORE_PASSWORD") | ||
} | ||
versionCode 6 | ||
versionName "1.3.0" | ||
} | ||
buildTypes { | ||
all { | ||
minifyEnabled true | ||
shrinkResources true | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
release { | ||
signingConfig signingConfigs.release | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/* | ||
-optimizationpasses 5 | ||
-allowaccessmodification |