2017-05-03 67 views
0

hellow线程退出与未捕获的异常(组= 0x94cabb20)

我想整合支付网关的条纹,我得到这个错误。

我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> 

和我的logcat是:

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:关闭VM

05-03 18:08:45.264 3425-3425/com.example.saubhagyam.paymentstripeintegration W/dalvikvm:threadid = 1:以未捕获的异常退出(组=我/过程:发送信号。 PID:3425 SIG:9

回答

0

我改变了整个条形输入法的实现方式,所以它给了我内置的功能,并且我可以成功地使用它。

谢谢。

相关问题