Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ademar111190 committed Dec 11, 2020
1 parent e3f8bac commit 44c0ff9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 16 deletions.
18 changes: 2 additions & 16 deletions app/build.gradle
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
}
}
}
3 changes: 3 additions & 0 deletions app/proguard-rules.pro
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

0 comments on commit 44c0ff9

Please sign in to comment.