sj_sdk_testing 0.0.3
sj_sdk_testing: ^0.0.3 copied to clipboard
A SDK to access XXX services such as login, sign-up, point exchange, ext..
sj_sdk_testing #
A SDK to access XXX services such as login, sign-up, point exchange, ext..
Setup #
Android #
Go to android/build.gradle and add this line inside repositories block:
repositories {
...
maven {
url = uri("https://jitpack.io")
}
}
and set kotlin version to 1.9.24 inside buildScript block:
ext.kotlin_version = '1.9.24'
Go to android/app/build.gradle and set minSdkVersion to 26
minSdkVersion 26
IOS #
Using #
Instantiate SjSdkTesting object:
final sdk = SjSdkTesting();
Access all methods from sdk variable:
await sdk.signIn();
await sdk.signUp();