gpt4 book ai didi

Android Studio Gradle 无效文件 Manifest.xml

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:51:22 25 4
gpt4 key购买 nike

我正在尝试在 AndroidStudio 版本 0.4.4 上构建我的 android 项目,但是在我触摸文件 build.gradle 后出现了问题,现在看起来像这样:

apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.0.1"

defaultConfig {
minSdkVersion 9
targetSdkVersion 19
versionCode 1
versionName "1.0"
}

signingConfigs {
release {
storeFile file('somekey.jks')
storePassword "pass"
keyAlias "alias"
keyPassword "pass"
}
}

buildTypes {
release {
signingConfig signingConfigs.release
runProguard false
debuggable false
jniDebugBuild false
zipAlign true
renderscriptDebugBuild false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}

debug {
debuggable true
jniDebugBuild true
renderscriptDebugBuild true
}
}
}

dependencies {
compile 'com.android.support:gridlayout-v7:19.0.1'
compile 'com.android.support:support-v4:19.0.1'
compile 'com.android.support:appcompat-v7:+'
compile 'com.google.android.gms:play-services:4.2.42'
}

之前是这样的:

apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.0.1"

defaultConfig {
minSdkVersion 8
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}

dependencies {
compile 'com.android.support:gridlayout-v7:19.0.1'
compile 'com.android.support:support-v4:19.0.1'
compile 'com.android.support:appcompat-v7:+'
compile 'com.google.android.gms:play-services:4.2.42'
}

现在我每次尝试运行我的项目时都会收到此错误:

Throwable: Invalid file: file://C:/Users/user/AndroidStudioProjects/myprojectname/myproject/build/manifests/debug/AndroidManifest.xml

有人知道如何解决这个问题吗?

最佳答案

巧合的是,当我对你的问题发表评论时,我也遇到了同样的错误,我自己解决了它。

File > Invalidate Caches/Restart

解决了我的问题。

关于Android Studio Gradle 无效文件 Manifest.xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21794087/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com