gpt4 book ai didi

android - 在 android studio 项目中集成 DroidAR 时 Gradle 构建错误

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

我们提供了将 DroidAR 集成到 Eclipse 项目中的指南,此链接提供:DroidAR Mobile Augmented Reality - How to use the framework in your own application但我正在努力在 AndroidStudio 项目中设置 DroidAR。

我遵循的步骤是:

  1. 已从此链接下载 DroidAR - DroidAR
  2. 创建了一个新的 android studio 项目 - DroidArSample
  3. 导入 droidar 文件夹(在下载的存档中找到,第 2 步)作为 DroidArSample 中的新模块
  4. 将 droidar 添加为 DroidArSample 的依赖项
  5. 从 droidar/AndroidManifest.xml 中删除了图标相关属性
  6. 编译

它显示了 120 个编译错误,下面指定了一些错误:

AGPBI: {"kind":"error","text":"Error retrieving parent for item: No resource found that matches the given name \u0027android:Widget.Material.Spinner.Underlined\u0027.","sources":[{"file":"/Users/devarshi.k/Downloads/DroidArSample/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.0/res/values-ldltr-v21/values-ldltr-v21.xml","position":{"startLine":1}}],"original":""}
AGPBI: {"kind":"error","text":"Error retrieving parent for item: No resource found that matches the given name \u0027android:Widget.Material.Spinner.Underlined\u0027.","sources":[{"file":"/Users/devarshi.k/Downloads/DroidArSample/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.0/res/values-ldrtl-v23/values-ldrtl-v23.xml","position":{"startLine":1}}],"original":""}
AGPBI: {"kind":"error","text":"No resource found that matches the given name: attr \u0027android:textAlignment\u0027.","sources":[{"file":"/Users/devarshi.k/Downloads/DroidArSample/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.1.0/res/values-v17/values-v17.xml","position":{"startLine":5,"startColumn":20,"startOffset":407,"endColumn":41,"endOffset":428}}],"original":""}

最后的 FAILED 消息是:

 FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Users/devarshi.k/Library/Android/sdk/build-tools/22.0.1/aapt'' finished with non-zero exit value 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

有什么想法吗?

最佳答案

检查您的 build.gradle 文件是否存在以下版本不匹配:

  1. compileSdkVersion
  2. buildToolsVersion
  3. targetSdkVersion
  4. 包括应用兼容库,例如编译 'com.android.support:appcompat-v7:23.0.0'

建议将它们全部设置为相同的版本,以避免出现问题中提到的问题

例如如果您使用 API Level-23,您在 build.gradle 中的配置应该如下所示:

(在相应的地方声明了以下各项)

compileSdkVersion 23

buildToolsVersion "23.0.0"

targetSdkVersion 23

compile 'com.android.support:appcompat-v7:23.0.0'

Refererence

关于android - 在 android studio 项目中集成 DroidAR 时 Gradle 构建错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34636863/

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