我想覆盖我计划集成的某个库设置的supportRtl=true
值。
我假设以下陈述中的某些内容可以解决问题
<meta-data
android:name="supportRtl"
android:value="false"
tools:replace="android:value" />
寻找确切的语法。
答案 0 :(得分:1)
android:supportsRtl
是<application>
代码的属性。
<application
android:supportsRtl="false"
tools:replace="android:supportsRtl" />