gpt4 book ai didi

android - 如何解决 Android Studio 找不到项目 list 文件的错误?

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:52:30 26 4
gpt4 key购买 nike

我正在将遗留项目从 Eclipse 迁移到 Android Studio。我做了以下事情:

  • 在eclipse中导出并生成gradle构建文件
  • 在 Android Studio 中导入 Gradle.build 文件
  • 将我的 gradle 版本依赖项更改为:classpath 'com.android.tools.build:gradle:0.9.+'

我的项目根文件夹包含 3 个库项目:ActionbarsherlockAuthbahnlibrary。我的根文件夹还包含名为 JohelpenHulpverlener 的主项目。

enter image description here

在解决了很多错误后,我得到了以下错误:

Error:A problem was found with the configuration of task ':checkDebugManifest'.
> File 'C:\android\jeugdformaat\JohelpenHulpverlener\AndroidManifest.xml' specified for property 'manifest' does not exist.

我的根 build.gradle 看起来像这样:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
}

apply plugin: 'android'

dependencies {
compile files('libs/android-support-v4.jar')
compile project(":actionbarsherlock")
}

android {
compileSdkVersion 17
buildToolsVersion "19.0.3"

defaultConfig {
minSdkVersion 10
targetSdkVersion 19
}

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
res.srcDirs = ['res']
}
}
}

我在主项目中的 build.gradle 是这样的:

apply plugin: 'android'

dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':library')
compile project(':actionbarsherlock')
compile project(':autobahn')
}

android {
compileSdkVersion 19
buildToolsVersion "19.0.0"

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}

// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')

// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}

我正在努力理解这一点,希望有人能帮助我!

最佳答案

你的根级 Gradle 构建文件中有一堆东西让构建系统认为那里有一个 Android 模块(它不是;它是 JohelpenHulpverlener 下的一个子目录),并且它失败了,因为它没有找到 list 。

我认为如果您从根级 build.gradle 文件中取出大量内容并将其替换为新项目的默认版本,即:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
}

allprojects {
repositories {
mavenCentral()
}
}

它会起作用。

关于android - 如何解决 Android Studio 找不到项目 list 文件的错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22356181/

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