Add the Viafoura Android SDK to your app
Add the SDK
Using Gradle
- Open your application level 'build.gradle'
- Add the 'Viafoura' gradle dependency
implementation 'com.viafoura:android:2.0.0'
- Sync your project
Using Maven
<dependency>
<groupId>com.viafoura</groupId>
<artifactId>android</artifactId>
<version>2.0.0</version>
</dependency>
Initialize the SDK
- Create an
Application
class for your app. - Initialize the SDK in the
onCreate()
. Make sure to replace SITE_UUID and SITE_DOMAIN with the values corresponding to your domain.
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
ViafouraSDK.initialize(getApplicationContext(), "SITE_UUID", "SITE_DOMAIN");
}
}
class MyApplication: Application() {
override fun onCreate() {
super.onCreate()
ViafouraSDK.initialize(getApplicationContext(), "SITE_UUID", "SITE_DOMAIN")
}
}
(Optional) Provide advertising ID
You can provide the sdk with the user advertising ID, which uniquely identifies a particular user for advertising use cases, such as ad personalization. More information
ViafouraSDK.advertisingIdentifier = "38400000-8cf0-11bd-b23e-10b96e40000d";
ViafouraSDK.advertisingIdentifier = "38400000-8cf0-11bd-b23e-10b96e40000d"
Updated 2 days ago
What’s Next