Skip to content

Getting Started

Checkout the project

You can checkout out the PlatformHub project if you are interested in learning how it works under the hood.

  1. Clone the repo: git clone https://alm-github.systems.uk.skyrin/mobile/platform-hub-android-lib.git
  2. In ~/.gradle/gradle.properties define nexusUser and nexusPassword variables.
  3. Open platform-hub-android-lib project in Android Studio
  4. Hit run in android studio to explore our sample-app
  5. Have fun!

Integrate PlatformHub

You can use our Gradle dependency to add PlatformHub into your library.

  • Our Snapshot builds are updated with every merge to Develop and intended for development work.
  • Our Certified builds are produced inline with the release schedule once all the work items have been implemented and they meet the quality expectations.
groovy
dependencies {

    // To include a Release build
    implementation 'com.skyrin.mobilebanking:platformhub:<version>'

    // To include a Debug build
    implementation 'com.skyrin.mobilebanking:platformhub:<version>-SNAPSHOT'
}