应用程序挂在Marshmallow上

时间:2016-07-12 07:22:56

标签: android android-6.0-marshmallow

我的Android应用程序完美适用于棒棒糖。但它挂在Marshmallow。

当我打开应用程序时,返回主页按钮,再次打开应用程序。它挂了。我使用了所有这些库:

compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:support-v4:23.2.1'
compile 'com.android.support:recyclerview-v7:23.2.1'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
compile 'com.mcxiaoke.volley:library:1.0.+'
compile 'com.google.android.gms:play-services-analytics:9.0.2'
compile "com.google.android.gms:play-services:9.0.2"
compile 'com.google.firebase:firebase-messaging:9.0.2'
compile 'com.android.support:multidex:1.0.0'

我使用:

 compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.example.appid"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        dexOptions {
            incremental true
            javaMaxHeapSize "4g"
        }
    }

2 个答案:

答案 0 :(得分:0)

你有什么时间例外?

检查您是否正在请求以下任何权限:https://developer.android.com/guide/topics/security/permissions.html#normal-dangerous

如果您是,那么您必须使用requestPermissions

专门请求它们

答案 1 :(得分:0)

我找到了解决方案。 我刚刚更新了库到最新的库,即 compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.2.1' compile 'com.android.support:design:23.2.1' compile 'com.android.support:support-v4:23.2.1' compile 'com.android.support:recyclerview-v7:23.2.1' compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4' compile 'com.mcxiaoke.volley:library:1.0.1' compile 'com.google.android.gms:play-services-analytics:9.2.0' compile "com.google.android.gms:play-services:9.2.0" compile 'com.google.firebase:firebase-messaging:9.0.2' compile 'com.android.support:multidex:1.0.1'

由于我没有使用危险许可,我不需要在运行时处理。