Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.08 KB

README.md

File metadata and controls

43 lines (30 loc) · 1.08 KB

omise-android-tumboon

Building Release Version.

  • 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

Proguard

Run app in release mode to enable proguard.

Running Application

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/\"")
        }
    }

Note

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