2017-05-03 66 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

我改變了整個條形輸入法的實現方式,所以它給了我內置的功能,並且我可以成功地使用它。

謝謝。

相關問題