私は統合文書を踏襲し、私のアプリでclaverTapを統合するが、私は私のアプリを実行すると、この次のエラーが来ています: -賢いタップ権限
com.clevertap.android.sdk.exceptions.CleverTapPermissionsNotSatisfied: Permission required: android.permission.INTERNET
問題、でも私はAndroidManifestでのインターネットのアクセス許可を追加しました。 xmlファイルはまた、
アプリケーションクラスのコードは、私がV4する>サポートバージョンを変更した場合、それは例外
が表示されますpublic class MyApplication extends Application {
public static CleverTapAPI cleverTap;
@Override
public void onCreate() {
Log.e("application","class0");
CleverTapAPI.setDebugLevel(1);
CleverTapAPI.changeCredentials("","");
ActivityLifecycleCallback.register(this); // Must be called before super.onCreate() of Application Class
Log.e("application","class1");
try {
cleverTap = CleverTapAPI.getInstance(getApplicationContext());
Log.e("application","class2");
} catch (CleverTapMetaDataNotFoundException e) {
e.printStackTrace();
} catch (CleverTapPermissionsNotSatisfied cleverTapPermissionsNotSatisfied) {
cleverTapPermissionsNotSatisfied.printStackTrace();
}
super.onCreate();
}
です
E/CleverTap: Error checking Google Play services availability
java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/android/gms/common/GoogleApiAvailability;
at com.clevertap.android.sdk.DeviceInfo.isGooglePlayServicesAvailable(DeviceInfo.java:274)
例外: Google Playサービスの可用性を確認中にエラーが発生しました。 java.lang.NoClassDefFoundError:Lcom/google/android/gms/common/GoogleApiAvailabilityの解決に失敗しました。 – Ahmad
エミュレータで実行していますか? – azizbekian
Khoti k私はモバイルの実デバイスで稼働しています – Ahmad