Almost release version + release config.
parent
c97c01638b
commit
80a77cfd5c
|
@ -7,3 +7,4 @@
|
||||||
/build
|
/build
|
||||||
/captures
|
/captures
|
||||||
.idea
|
.idea
|
||||||
|
keystore.properties
|
||||||
|
|
|
@ -17,6 +17,16 @@ repositories {
|
||||||
maven { url 'https://maven.fabric.io/public' }
|
maven { url 'https://maven.fabric.io/public' }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create a variable called keystorePropertiesFile, and initialize it to your
|
||||||
|
// keystore.properties file, in the rootProject folder.
|
||||||
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
||||||
|
|
||||||
|
// Initialize a new Properties() object called keystoreProperties.
|
||||||
|
def keystoreProperties = new Properties()
|
||||||
|
|
||||||
|
// Load your keystore.properties file into the keystoreProperties object.
|
||||||
|
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 21
|
compileSdkVersion 21
|
||||||
buildToolsVersion "23.0.3"
|
buildToolsVersion "23.0.3"
|
||||||
|
@ -28,10 +38,21 @@ android {
|
||||||
versionCode 1
|
versionCode 1
|
||||||
versionName "1.0"
|
versionName "1.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
config {
|
||||||
|
keyAlias keystoreProperties['keyAlias']
|
||||||
|
keyPassword keystoreProperties['keyPassword']
|
||||||
|
storeFile file(keystoreProperties['storeFile'])
|
||||||
|
storePassword keystoreProperties['storePassword']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
|
signingConfig signingConfigs.config
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,3 +15,7 @@
|
||||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||||
# public *;
|
# public *;
|
||||||
#}
|
#}
|
||||||
|
|
||||||
|
-keepattributes Signature
|
||||||
|
-keepattributes InnerClasses
|
||||||
|
-dontwarn ch.qos.logback.core.net.*
|
|
@ -130,6 +130,8 @@ public class MainActivity extends ActionBarActivity {
|
||||||
if (sharedPrefs.getBoolean(FIRST_TIME_LAUNCH, true)) {
|
if (sharedPrefs.getBoolean(FIRST_TIME_LAUNCH, true)) {
|
||||||
Toast.makeText(this, "To interact with any list itemm press long the item. When thgre is no results" +
|
Toast.makeText(this, "To interact with any list itemm press long the item. When thgre is no results" +
|
||||||
", please, click refresh in the menu", Toast.LENGTH_LONG).show();
|
", please, click refresh in the menu", Toast.LENGTH_LONG).show();
|
||||||
|
Toast.makeText(this, "To change panoramio / wiki search views swipe left or right",
|
||||||
|
Toast.LENGTH_LONG).show();
|
||||||
SharedPreferences.Editor editor = sharedPrefs.edit();
|
SharedPreferences.Editor editor = sharedPrefs.edit();
|
||||||
editor.putBoolean(FIRST_TIME_LAUNCH, false);
|
editor.putBoolean(FIRST_TIME_LAUNCH, false);
|
||||||
editor.commit();
|
editor.commit();
|
||||||
|
|
Loading…
Reference in New Issue