Stripe for Android ExceptionInInitializerError

时间:2016-05-01 17:38:36

标签: android stripe-payments

使用Stripe库并示例located here。当我尝试在我们的应用程序的发布版本中创建令牌时,我得到以下堆栈跟踪:

    java.lang.RuntimeException: An error occured while executing doInBackground()
    at com.stripe.android.compat.AsyncTask$3.done(AsyncTask.java:250)
    at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:354)
    at java.util.concurrent.FutureTask.setException(FutureTask.java:223)
    at java.util.concurrent.FutureTask.run(FutureTask.java:242)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
    at java.lang.Thread.run(Thread.java:818)
Caused by: java.lang.ExceptionInInitializerError
    at com.stripe.net.APIResource.<clinit>(APIResource.java:37)
    at com.stripe.android.Stripe$1$1.doInBackground(Stripe.java:28)
    at com.stripe.android.Stripe$1$1.doInBackground(Stripe.java:23)
    at com.stripe.android.compat.AsyncTask$2.call(AsyncTask.java:236)
    at java.util.concurrent.FutureTask.run(FutureTask.java:237)
    ... 3 more
Caused by: java.lang.RuntimeException: Missing type parameter.
    at com.google.a.c.a.getSuperclassTypeParameter(TypeToken.java:84)
    at com.google.a.c.a.<init>(TypeToken.java:62)
    at com.stripe.model.FeeRefundCollectionDeserializer$1.<init>(FeeRefundCollectionDeserializer.java:17)
    at com.stripe.model.FeeRefundCollectionDeserializer.<clinit>(FeeRefundCollectionDeserializer.java:17)
    ... 8 more

似乎使用调试版本可以正常工作。我正在使用proguard并添加了文档中提到的排除:

-keep class com.stripe.** { *; }

我使用的卡是一个测试卡,它优雅地告诉我,当我运行调试apk时,它是一个与实时密钥一起使用的测试卡。当我在实时apk中尝试相同时,会导致此崩溃。

现在没有任何程序的测试......

修改

好吧我完全关闭了proguard,似乎已经让问题消失了。所以现在我尝试用极其有限的学习知识来挖掘这些知识,试图弄清楚这里发生了什么:)

这是我的完整proguard-rules.pro文件:

-dontwarn com.facebook.**
-dontwarn org.joda.time.**
-dontwarn org.codehaus.**
-dontwarn java.nio.**
-dontnote **ILicensingService
-keep class com.crashlytics.** { *; }
-keep class com.crashlytics.android.**
-keep class com.stripe.** { *; }
-keepattributes SourceFile,LineNumberTable,*Annotation*

1 个答案:

答案 0 :(得分:1)

经过相当多的搜索后,我了解到proguard似乎正在剥离Stripe库中的Gson相关类,即使它不应该。

As posted here,Google似乎为gson推荐了一些额外的proguard设置:

-dontwarn com.facebook.**
-dontwarn org.joda.time.**
-dontwarn org.codehaus.**
-dontwarn java.nio.**
-dontnote **ILicensingService
-keep class com.crashlytics.** { *; }
-keep class com.crashlytics.android.**
-keep class com.stripe.** { *; }
##---------------Begin: proguard configuration for Gson  ----------
# Gson uses generic type information stored in a class file when working with fields. Proguard
# removes such information by default, so configure it to keep all of it.
-keepattributes Signature

# For using GSON @Expose annotation
-keepattributes *Annotation*

# Gson specific classes
-keep class sun.misc.Unsafe { *; }

##---------------End: proguard configuration for Gson  ----------
-keepattributes SourceFile,LineNumberTable

将这些设置添加到proguard似乎修复了我的应用程序的发布版本。