Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/182.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 线程以未捕获异常退出(组=0x94cabb20)_Android - Fatal编程技术网

Android 线程以未捕获异常退出(组=0x94cabb20)

Android 线程以未捕获异常退出(组=0x94cabb20),android,Android,hellow 我正在尝试集成stripe的支付网关,我得到了这个错误 我的Menifest文件如下: manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.saubhagyam.paymentstripeintegration"> <application android:allowBackup="tr

hellow

我正在尝试集成stripe的支付网关,我得到了这个错误

我的Menifest文件如下:

manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.saubhagyam.paymentstripeintegration">

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <meta-data
        android:name="com.google.android.gms.wallet.api.enabled"
        android:value="true" />
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
manifest xmlns:android=”http://schemas.android.com/apk/res/android"
package=“com.example.saubhagyam.paymentstripeintegration”>
我的日志是:

05-03 18:08:45.184 3425-3425/?D/dalvikvm:延迟启用CheckJNI

05-03 18:08:45.264 3425-3425/com.example.saubhagyam.paymentstripeintegration D/AndroidRuntime:关闭虚拟机

05-03 18:08:45.264 3425-3425/com.example.saubhagyam.paymentstripeintegration W/dalvikvm:threadid=1:线程以未捕获异常退出(组=0x94cabb20)

05-03 18:13:45.3943425-3425/?I/进程:发送信号。PID:3425信号:9


通过集成条带输入法,我改变了整个实现方式,因此它为我提供了内置功能,我成功地使用了它

谢谢