从22更新到Google SDK 26、27或28会使无线电应用程序崩溃

时间:2019-02-22 18:22:34

标签: sdk

目前,我有一个广播应用程序,它具有“直播广播”按钮以及其他几个按钮。

问题是,如果我至少没有SDK 26(在22时提示),Google将不允许我更新应用程序

当我将SDK更改为26、27或28并尝试单击“直播”以收听音频时,应用将崩溃,但只有在该选项下,应用的所有其他部分才能正常工作。

我还注意到,这仅发生在使用像素手机模拟器的Nexus 5手机上,我没有问题。

apply plugin: 'com.android.application'

android {     lintOptions {         abortOnError false     }     编译版本28     buildToolsVersion '28 .0.3'

defaultConfig {
    applicationId "enchufados.com.app"
    minSdkVersion 15
    targetSdkVersion 28
    versionCode 17
    versionName "1.2.6"
    multiDexEnabled true
    renderscriptTargetApi 19
    renderscriptSupportModeEnabled true
    ndk {
        abiFilters "armeabi", "armeabi-v7a", "x86", "mips"
    }

}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

sourceSets {
    main {
        jniLibs.srcDirs = ['libs']
    }
}

0 个答案:

没有答案