gpt4 book ai didi

android - 我的应用程序和库的 list 之间存在错误

转载 作者:行者123 更新时间:2023-11-29 17:40:33 25 4
gpt4 key购买 nike

我正在编写一个 Android 库,它使用 Sugar Orm 将内容存储到 SQLite 数据库中。我的 Android 库的 AndroidManifest.xml。

我得到的错误是:

Error:(13, 9) Attribute application@name value=(com.example.app.App) from AndroidManifest.xml:13:9
Error:(20, 13) Attribute meta-data#DATABASE@value value=(test_car.db) from AndroidManifest.xml:20:13
Error:(23, 13) Attribute meta-data#VERSION@value value=(4) from AndroidManifest.xml:23:13
Error:(29, 13) Attribute meta-data#DOMAIN_PACKAGE_NAME@value value=(com.example.app) from AndroidManifest.xml:29:13

它说“建议:在 AndroidManifest.xml:21:9 的元素中添加‘tools:replace="android:value”以覆盖”

我该如何解决这个问题?

主应用程序使用:

<application
android:name=".App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<meta-data
android:name="DATABASE"
android:value="example_scans.db" />
<meta-data
android:name="VERSION"
android:value="4" />
<meta-data
android:name="QUERY_LOG"
android:value="true" />
<meta-data
android:name="DOMAIN_PACKAGE_NAME"
android:value="com.example.usps" />

我的图书馆使用:

 <application
android:allowBackup="true"
android:label="@string/app_name"
android:name="com.orm.SugarApp">

<meta-data android:name="DATABASE" android:value="example_logs.db" />
<meta-data android:name="VERSION" android:value="3" />
<meta-data android:name="QUERY_LOG" android:value="true" />
<meta-data android:name="DOMAIN_PACKAGE_NAME" android:value="com.example.usps" />

最佳答案

在您的 list 文件中,尝试在您的 list 标签中添加 xmlns:tools="http://schemas.android.com/apk/res-auto",然后在您的应用程序标签中添加 tools:replace="标签"

像这样:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/apk/res-auto"
package="yourpackage">
<application
android:name=".App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
tools:replace="label">
<meta-data
android:name="DATABASE"
android:value="example_scans.db" />
<meta-data
android:name="VERSION"
android:value="4" />
<meta-data
android:name="QUERY_LOG"
android:value="true" />
<meta-data
android:name="DOMAIN_PACKAGE_NAME"
android:value="com.example.usps" />

...other stuff....
</manifest>

编辑

我检查了我的示例项目并将 Sugar 库更新到版本 1.3.1 解决了这个问题。如果您使用的是 gradle,请使用:

compile 'com.github.satyan:sugar:1.3.1'

关于android - 我的应用程序和库的 list 之间存在错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28943702/

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