I am getting the following exception on Android trying to run Stripe.deviceSupportsAndroidPay()
abstract method "com.google.android.gms.common.api.Api$zze com.google.android.gms.common.api.Api$zza.zza(android.content.Context, android.os.Looper, com.google.android.gms.common.internal.zzq, java.lang.Object, com.google.android.gms.common.api.GoogleApiClient$ConnectionCallbacks, com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener)"
invoke
JavaMethodWrapper.java:374
invoke
JavaModuleWrapper.java:162
run
NativeRunnable.java
handleCallback
Handler.java:751
dispatchMessage
Handler.java:95
dispatchMessage
MessageQueueThreadHandler.java:31
loop
Looper.java:154
run
MessageQueueThreadImpl.java:194
run
Thread.java:761
Hi @threesquared!
Looks like you got problem with google play services. Wich version there are in your build.gradle? Can you post denedencies section somewhere?
@paynd thanks for pointing me in the right direction. I had the following in my build.grade:
compile 'com.google.android.gms:play-services-base:11.+'
compile 'com.google.android.gms:play-services-maps:11.+'
So adding the following fixed this issue for me:
compile 'com.google.android.gms:play-services-wallet:11.+'
Most helpful comment
@paynd thanks for pointing me in the right direction. I had the following in my build.grade:
So adding the following fixed this issue for me: