这是我的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的错误
答案 0 :(得分:0)
当从23更新到27时,更改gradle构建文件中的实现。代码行如下所示:
implementation 'com.android.support:appcompat-v7:27.0.0'
testImplementation 'junit:junit:4.12'
答案 1 :(得分:0)
您也可以将targetSdkVersion更改为27,并将所有库更新为对应的版本。
在此处获取库版本:Support Library version