Almost release version + release config.

master
Tomasz Półgrabia 2016-09-17 17:37:27 +02:00
parent c97c01638b
commit 80a77cfd5c
4 changed files with 28 additions and 0 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@
/build
/captures
.idea
keystore.properties

View File

@ -17,6 +17,16 @@ repositories {
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 {
compileSdkVersion 21
buildToolsVersion "23.0.3"
@ -28,10 +38,21 @@ android {
versionCode 1
versionName "1.0"
}
signingConfigs {
config {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
}
}

View File

@ -15,3 +15,7 @@
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
-keepattributes Signature
-keepattributes InnerClasses
-dontwarn ch.qos.logback.core.net.*

View File

@ -130,6 +130,8 @@ public class MainActivity extends ActionBarActivity {
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" +
", 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();
editor.putBoolean(FIRST_TIME_LAUNCH, false);
editor.commit();