📄
IOE SDK
  • Introduction to IOE SDK
  • Change Logs
  • [Android] IOE SDK
    • 1. Install IOE SDK
    • 2. SDK Integration
    • 3. SDK Features
  • [iOS] IOE SDK
    • 1. Install IOE SDK
    • 2. SDK Integration
    • 3. SDK Feature
Powered by GitBook
On this page
  • Setup gradle maven
  • Open file app/build.grade then add sdk:
  • Initialize IOE in file Application
  1. [Android] IOE SDK

1. Install IOE SDK

Setup gradle maven

Open build.grade file and add maven line like below

allprojects {
    repositories {
        google()  
        mavenCentral()
        maven { url 'https://jitpack.io' } <- add this line
    }
}

Open setting.gradle file and add maven line like below

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
    repositories {
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' } <- add this line
    }
}

Open file app/build.grade then add sdk:

dependencies {
...
       implementation "com.github.ftechmobile:ioe-sdk-android:1.1.0"
}

Initialize IOE in file Application

override fun onCreate() {
        super.onCreate()
        ...
        FTechIOEManager.init(this)
    }

Previous[Android] IOE SDKNext2. SDK Integration

Last updated 9 months ago