- Download two files keep in your local build machine
- Open project navigate to gradle.properties
- Update Key.signing corresponding to path that you keep downloaded files
Run app in release mode to enable proguard.
Open app build.gradle and change URL_WEB_END_POINT to specific API endpoint
Install the dependencies and devDependencies and start the server.
productFlavors {
prod {
dimension "default"
buildConfigField("String",
"URL_WEB_END_POINT", "\"http://192.168.101.92:3000/\"")
}
dev {
dimension "default"
buildConfigField("String",
"URL_WEB_END_POINT", "\"http://192.168.101.92:3000/\"")
}
}
co.omise.android.ui.CreditCardEditText class is not working on some Android Device.
So, I create another one to solved this problem by using TextWatcher instead of KeyEvent please check it!
see more => https://stackoverflow.com/a/15485248/2077479