我是react-native
的新手。当我尝试通过手机通过USB连接(启用调试模式)从android-studio
运行我的应用程序时。 Build succeeded
和App已安装到手机中。但是当我尝试打开该应用程序时,它会crashes
立即打开。请在调试模式下检查屏幕截图中的错误和Java行。
调试错误:
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.parable.rnmvp, PID: 18237
java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
at java.util.ArrayList.get(ArrayList.java:437)
at com.dooboolab.RNIap.RNIapModule.onPurchasesUpdated(RNIapModule.java:517)
at com.dooboolab.RNIap.RNIapModule$11.run(RNIapModule.java:544)
at com.dooboolab.RNIap.RNIapModule$2.onBillingSetupFinished(RNIapModule.java:103)
at com.android.billingclient.api.BillingClientImpl$BillingServiceConnection$1.run(BillingClientImpl.java:1521)
at android.os.Handler.handleCallback(Handler.java:873)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:232)
at android.app.ActivityThread.main(ActivityThread.java:7165)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:576)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:888)
ArrayList.java(错误块)
public E get(int index) {
if (index >= size)
throw new IndexOutOfBoundsException(outOfBoundsMsg(index)); //line 437 (from this line it throws error)
return (E) elementData[index];
}
请帮助我解决此问题。如果我需要分享任何其他信息。请在评论中提问。
答案 0 :(得分:1)
参考某人在react-native-iap模块上提出的@firats
评论和issue,我尝试了react-native-iap@4.0.4
现在,此错误已解决。