0

这是我的 app.gradle 文件:

apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'
apply plugin: 'android-apt'

//apply plugin: 'com.neenbedankt.android-apt'

android {  
    compileSdkVersion 23  
    buildToolsVersion '27.0.3'  
    useLibrary 'org.apache.http.legacy'  

defaultConfig {
    applicationId "com.alpha"
    minSdkVersion 19
    targetSdkVersion 23
    versionCode 5
    versionName "1.0.2"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

apt {
    arguments {
        androidManifestFile variant.outputs[0].processResources.manifestFile
        resourcePackageName android.defaultConfig.applicationId
    }
}

它运行正常,没有任何问题,但是当我将 compileSdkVersion 从 23 更新到 27 并删除 apt 代码行时,它会引发无法解析 AndroidManifest.xml 的错误

4

2 回答 2

0

当您从 23 更新到 27 时,更改 gradle 构建文件中的实现。代码行将如下所示 implementation 'com.android.support:appcompat-v7:27.0.0' testImplementation 'junit:junit:4.12'

于 2018-08-26T08:19:51.887 回答
0

您也可以将 targetSdkVersion 更改为 27,并将所有库更新为相应的版本。

在此处获取库版本:支持库版本

于 2018-08-26T08:29:57.120 回答