This file contains hidden or 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
| public class Configuration extends BaseConfiguration { | |
| public static final int ITEMS_PER_PAGE = 5; | |
| } |
This file contains hidden or 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
| public class BaseConfiguration { | |
| public static final String API_URL = "https://someapi.wolox.com.ar"; | |
| } |
This file contains hidden or 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
| productFlavors { | |
| stage { | |
| signingConfig signingConfigs.stage | |
| applicationId defaultConfig.applicationId + ".stage" | |
| versionName defaultConfig.versionName + "-stage" | |
| } | |
| production { | |
| signingConfig signingConfigs.production | |
| } |
This file contains hidden or 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
| apply from: 'keystore.gradle' |
This file contains hidden or 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
| ext.key_alias='playstore' | |
| ext.key_password='playstore' | |
| ext.store_password='playstore' |
This file contains hidden or 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
| signingConfigs { | |
| stage { | |
| storeFile file('keystore/stage.keystore') | |
| storePassword 'android' | |
| keyAlias 'androiddebugkey' | |
| keyPassword 'android' | |
| } | |
| production { | |
| storeFile file('keystore/playstore.keystore') | |
| storePassword store_password |
This file contains hidden or 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
| buildTypes { | |
| release { | |
| minifyEnabled false | |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
| } | |
| debug { | |
| signingConfig null | |
| } | |
| } |
This file contains hidden or 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
| public class BaseConfiguration { | |
| public static final String API_URL = "https://someapi.wolox.com.ar"; | |
| } |
NewerOlder