Android SDK
Configuration
Configure ProxyKit Android SDK
Configuration
Initialize
import com.proxykit.sdk.ProxyKit
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
ProxyKit.configure()
.withAppId("app_xxxxxxxxxxxxx") // From dashboard
.build(this)
}
}
Register in Manifest
<application
android:name=".MyApplication"
...>
</application>