This is an example Android Application README to show briefly the sections your app README should contain.
Clone this repository and import into Android Studio
git clone [email protected]:wolox/<reponame>.git
public class BaseConfiguration { | |
public static final String API_URL = "https://someapi.wolox.com.ar"; | |
} |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
debug { | |
signingConfig null | |
} | |
} |
signingConfigs { | |
stage { | |
storeFile file('keystore/stage.keystore') | |
storePassword 'android' | |
keyAlias 'androiddebugkey' | |
keyPassword 'android' | |
} | |
production { | |
storeFile file('keystore/playstore.keystore') | |
storePassword store_password |
ext.key_alias='playstore' | |
ext.key_password='playstore' | |
ext.store_password='playstore' |
apply from: 'keystore.gradle' |
productFlavors { | |
stage { | |
signingConfig signingConfigs.stage | |
applicationId defaultConfig.applicationId + ".stage" | |
versionName defaultConfig.versionName + "-stage" | |
} | |
production { | |
signingConfig signingConfigs.production | |
} |
public class BaseConfiguration { | |
public static final String API_URL = "https://someapi.wolox.com.ar"; | |
} |
public class Configuration extends BaseConfiguration { | |
public static final int ITEMS_PER_PAGE = 5; | |
} |
This is an example Android Application README to show briefly the sections your app README should contain.
Clone this repository and import into Android Studio
git clone [email protected]:wolox/<reponame>.git