Android
Getting Started
Configuration
To integrate your app with Goodie SDK, it can be done in 3 steps. Firstly, you need to add URL reference in your .gradle project. This reference is a guide for .gradle to get Goodie SDK from the right repository. You can set the configuration by following these steps:
Allprojects { repositories { maven { url 'https: //jitpack.io' } } }
Second, you need to add SDK dependencies inside your app .gradle. Then, you need to synchronize to compile the Goodie SDK for your app.
dependencies { implementation 'com.github. goodie-id:sdk_android:1.0.2' }
Third, you need to add java version inside app .gradle. Then, you need to synchronize to compile the Goodie SDK for your app.
compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 }