Reputation: 99
I use Google Maps in Android Studio. Everything is working fine but in the console, I have an error:
07-02 10:53:54.191 29293-29293/com.home.smart.home E/dalvikvm﹕ Could not find class 'android.app.Notification$BigTextStyle', referenced from method com.google.android.gms.common.GooglePlayServicesUtil.zza
07-02 10:53:54.192 29293-29293/com.home.smart.home E/dalvikvm﹕ Could not find class 'android.app.AppOpsManager', referenced from method com.google.android.gms.common.GooglePlayServicesUtil.zza
07-02 10:53:55.831 29293-29293/com.home.smart.home E/dalvikvm﹕ Could not find class 'android.app.AppOpsManager', referenced from method com.google.android.gms.common.ij.a
07-02 10:53:55.868 29293-29293/com.home.smart.home E/dalvikvm﹕ Could not find class 'android.app.Notification$BigTextStyle', referenced from method com.google.android.gms.common.ij.b
I have included lib in Gradle
compile 'com.google.android.gms:play-services:7.5.0'
Upvotes: 0
Views: 776
Reputation: 3540
Without the full stack trace I can't be sure, but I suppose you are trying to use big notification on a device that does not support them. Which API level are you using? Minsdk TargetSDk and deviceSDk
I think you are developing for targetsdk >= 16 and your device is older (maybe a gingerbread?
Upvotes: 3