我正在使用Android Studio,但无法修复此错误
Android resource linking failed Output: F:\Jayme\AndroidSDK\sdk_demo\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:207: error: resource android:attr/fontStyle not found. F:\Jayme\AndroidSDK\sdk_demo\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:207: error: resource android:attr/font not found. F:\Jayme\AndroidSDK\sdk_demo\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:207: error: resource android:attr/fontWeight not found. error: failed linking references.
Command: C:\Users\Jayme\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\29f5b1f09c99c35adb27ad420ff37fc9\aapt2-3.2.1-4818971-windows\aapt2.exe link -I\
C:\Android\android-sdk\platforms\android-25\android.jar\
--manifest\
F:\Jayme\AndroidSDK\sdk_demo\app\build\intermediates\merged_manifests\debug\processDebugManifest\merged\AndroidManifest.xml\
-o\
F:\Jayme\AndroidSDK\sdk_demo\app\build\intermediates\processed_res\debug\processDebugResources\out\resources-debug.ap_\
-R\
@F:\Jayme\AndroidSDK\sdk_demo\app\build\intermediates\incremental\processDebugResources\resources-list-for-resources-debug.ap_.txt\
--auto-add-overlay\
--java\
F:\Jayme\AndroidSDK\sdk_demo\app\build\generated\not_namespaced_r_class_sources\debug\processDebugResources\r\
--custom-package\
com.wakeup.xxx\
-0\
apk\
--output-text-symbols\
F:\Jayme\AndroidSDK\sdk_demo\app\build\intermediates\symbols\debug\R.txt\
--no-version-vectors Daemon: AAPT2 aapt2-3.2.1-4818971-windows Daemon #0
有人可以帮助我吗?
答案 0 :(得分:0)
我认为您的项目中有一个自己的库模块。如果应用程序和库模块项目不同,targetSdkVersion
或compileSdkVersion
将显示错误。 (同样,我也遇到同样的错误。对于我来说,应用模块的targetSdkVersion
是28,库是27。)或者您可以尝试以下建议。
答案 1 :(得分:0)
错误:资源
android:attr/font
未找到。F:\Jayme\AndroidSDK\sdk_demo\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml
:207: 错误:资源android:attr/fontWeight
未找到
找不到attr/font
或attr/fontWeight
。要么在使用它们时删除它们,要么在font
的{{1}}文件中添加项目(fontWeight
,attrs.xml
)。