内容简介:Android Studio中提示的错误Log:引起的原因:项目中引入了多个aar,每个aar对应了不同的appcompat-v7版本,为了不引起错误,我们会设置force某个版本,但是问题就在这边,需要设置最高版本保证其他aar中引用的高资源内容不会因为我们设置低版本而出错。/Users/lijiangping/MyProject/PP/framework/build.gradle: Error: All com.android.support libraries must use the exact s
Android Studio中提示的错误Log:
/Users/lijiangping/.gradle/caches/transforms-1/files-1.1/appcompat-v7-27.1.1.aar/c85964a61f36e1b83cfed8dc0b27cbc1/res/values/values.xml:251:5-69: AAPT: error: resource android:attr/fontVariationSettings not found. /Users/lijiangping/.gradle/caches/transforms-1/files-1.1/appcompat-v7-27.1.1.aar/c85964a61f36e1b83cfed8dc0b27cbc1/res/values/values.xml:251:5-69: AAPT: error: resource android:attr/ttcIndex not found.
引起的原因:项目中引入了多个aar,每个aar对应了不同的appcompat-v7版本,为了不引起错误,我们会设置force某个版本,但是问题就在这边,需要设置最高版本保证其他aar中引用的高资源内容不会因为我们设置低版本而出错。
/Users/lijiangping/MyProject/PP/framework/build.gradle: Error: All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 28.0.0, 27.1.1, 25.2.0 . Examples include com.android.support:collections:28.0.0 and com.android.support:animated-vector-drawable:27.1.1 [GradleCompatible]
因此我们需要将我们的appcompat-v7版本force为这些aar中最高的版本:28.0.0
在build.gradle中加入:
configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> def requested = details.requested if (requested.group == 'com.android.support') { if (!requested.name.startsWith("multidex")) { details.useVersion '28.0.0' } } } }
以上所述就是小编给大家介绍的《AAPT: error: resource android:attr/fontVariationSettings not found》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Practice of Programming
Brian W. Kernighan、Rob Pike / Addison-Wesley / 1999-2-14 / USD 49.99
With the same insight and authority that made their book The Unix Programming Environment a classic, Brian Kernighan and Rob Pike have written The Practice of Programming to help make individual progr......一起来看看 《The Practice of Programming》 这本书的介绍吧!