2017-08-01 37 views
1

我正在對谷歌Android生命體徵這個堆棧跟蹤stack trace特定設備大多小米的紅米手機設備。這裏的設備入門Android本地崩潰/system/lib64/libc.so特定設備上(tgkill + 8)

enter image description here

這裏的名單是我的app.gradle

buildscript { 
repositories { 
    maven { url 'https://maven.fabric.io/public' } 
} 

repositories { 
    jcenter() 
} 

dependencies { 
    classpath 'io.fabric.tools:gradle:1.+' 
} 
} 
apply plugin: 'com.android.application' 
apply plugin: 'io.fabric' 



repositories { 
mavenCentral() 
maven { url 'https://maven.fabric.io/public' } 
maven { url "https://raw.githubusercontent.com/smilefam/SendBird-SDK- 
Android/master/" } 
} 

android { 
lintOptions { 
    checkReleaseBuilds false 
} 
compileSdkVersion 26 
buildToolsVersion "26.0.0" 
defaultConfig { 
    resConfigs "en" 
    applicationId "xxxxxxxx" 
    minSdkVersion 16 
    targetSdkVersion 26 
    versionCode 123 
    multiDexEnabled false 
    versionName "1.6.8.1" 
    signingConfig signingConfigs.config 
} 
buildTypes { 
    debug { 
     minifyEnabled false 
     debuggable true 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
    release { 
     minifyEnabled true 
     debuggable false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     signingConfig signingConfigs.config 
    } 
} 
dexOptions { 
    javaMaxHeapSize "4g" 
} 
} 

dependencies { 
compile fileTree(include: ['*.jar'], dir: 'libs') 
//////////////// 
//////////////////////////// 
////////////////////////////// 
compile 'com.squareup.okhttp3:okhttp:3.8.0' 
compile('com.twitter.sdk.android:twitter:[email protected]') { 
    transitive = true// Contains Picasso 
} 
compile('com.crashlytics.sdk.android:crashlytics:[email protected]') { 
    transitive = true 
} 
compile('io.branch.sdk.android:library:2.+') { 
    exclude module: 'answers-shim' 
} 
compile 'com.android.support:appcompat-v7:26.0.0' 
compile 'com.android.support:design:26.0.0' 
compile 'com.google.android.gms:play-services-location:11.0.2' 
compile 'com.google.android.gms:play-services-gcm:11.0.2' 
compile 'com.google.android.gms:play-services-auth:11.0.2' 
compile 'org.greenrobot:eventbus:3.0.0' 
compile 'com.facebook.android:facebook-android-sdk:4.24.0' 
compile 'com.facebook.android:account-kit-sdk:4.20.0' 
compile 'com.sendbird.sdk:sendbird-android-sdk:3.0.28' 
compile 'com.clevertap.android:clevertap-android-sdk:3.1.2' 
compile 'com.kbeanie:image-chooser-library:[email protected]' 
compile 'com.isseiaoki:simplecropview:1.1.4' 
compile 'com.wang.avi:library:2.1.3' 
compile 'com.pkmmte.view:circularimageview:1.1' 
compile 'com.squareup.retrofit2:retrofit:2.3.0' 
compile 'com.squareup.okhttp3:logging-interceptor:3.6.0' 
compile 'com.squareup.retrofit2:converter-gson:2.3.0' 
compile 'com.squareup.okhttp:okhttp:2.4.0' 
compile 'com.airbnb.android:epoxy:2.2.0' 
testCompile 'junit:junit:4.12' 
} 
apply plugin: 'com.google.gms.google-services' 

我需要找出解決這個崩潰或至少重現它在我結束的方式幫助。它在織物上也看不到。 我覺得可能是由於構建工具26.0.0引起的。但不知道。

在此先感謝。

+0

您使用的是最新的Crashlytics的版本,在您的應用程序?這可能有助於它在我們的儀表板中進行報告,並給您更多的見解。 –

+0

是的。我想是這樣。這是我對crashlytics的依賴com.crashlytics.sdk.android:crashlytics:[email protected] – saurabhlahoti

回答

0

我不知道確切的原因,但我解決它的方式,似乎是錯誤發生,因爲我已經升級我的庫和構建工具到版本26,我認爲它目前不兼容小米和一些其他設備。因此將其降級到25.0.3和Google api庫,以舊版本。在S6邊緣

0

此問題發生加, 我嘗試使用舊的版本,我的設備不會再發生 你可以試試我的解決方案

compile 'com.google.android.gms:play-services-analytics:9.2.1' 
compile 'com.google.android.gms:play-services-vision:9.2.1' 
compile 'com.google.android.gms:play-services-appindexing:9.2.1'