gpt4 book ai didi

Android Studio - 使用依赖于另一个 Android 库的 Android 库构建 Android 项目

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

我需要使用 Gradle 构建一个 Android 项目,该项目依赖于 Android 库项目 A,而该项目又依赖于另一个 Android 库项目 B。

到目前为止,我有以下内容:

Android 项目:

build.gradle:

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}

apply plugin: 'android'

dependencies {
compile project(':LibA')
}

android {
compileSdkVersion 7
buildToolsVersion "17.0.0"
}

list .xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cyborg.template"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="7" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name="com.cyborg.template.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

Android 库 A:

build.gradle:

buildscript {
repositories {
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}

apply plugin: 'android-library'

dependencies {
compile project(':LibB')
}


android {
compileSdkVersion 7
buildToolsVersion "17.0.0"
}

list .xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lib.project.a"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="7"/>

</manifest>

Android 库 B:

build.gradle:

buildscript {
repositories {
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}

apply plugin: 'android-library'

android {
compileSdkVersion 7
buildToolsVersion "17.0.0"
}

list .xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lib.project.b"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="7"/>

</manifest>

在尝试构建 Android 项目时,Android studio 报告以下错误:

Gradle: Execution failed for task ':LibA:processDebugManifest'.
> Manifest merging failed. See console for more info.

我应该在哪里搜索有关该错误的更多信息?

我发现了一些关于这个错误的问题,但它似乎与我的情况不同。

启示?

谢谢,亚当。

最佳答案

库的 list 文件当前必须有一个 <application />节点,即使它是空的。

这是一个我们会在某个时候删除的限制,但现在,只需添加它。

关于Android Studio - 使用依赖于另一个 Android 库的 Android 库构建 Android 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17755887/

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