Android
CleverTap
Recherche…
Introduction
Hackings rapides pour le SDK d'analyse et d'engagement fourni par CleverTap - Android
Remarques
Obtenez vos informations d'identification CleverTap à partir de https://clevertap.com .
Obtenir une instance du SDK pour enregistrer des événements
CleverTapAPI cleverTap;
try {
cleverTap = CleverTapAPI.getInstance(getApplicationContext());
} catch (CleverTapMetaDataNotFoundException e) {
// thrown if you haven't specified your CleverTap Account ID or Token in your AndroidManifest.xml
} catch (CleverTapPermissionsNotSatisfied e) {
// thrown if you haven’t requested the required permissions in your AndroidManifest.xml
}
Définition du niveau de débogage
Dans votre classe d'application personnalisée, remplacez la méthode onCreate()
, ajoutez la ligne ci-dessous:
CleverTapAPI.setDebugLevel(1);
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow