【发布时间】:2017-02-07 07:20:05
【问题描述】:
这是我的应用程序清单,我想为我的所有库覆盖 android:supportsRtl 标记
<application
android:name=".ApplicationClass"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:supportsRtl="false"
android:theme="@style/AppTheme"
tools:replace="android:icon,android:label,android:supportsRtl">
我有 5 libraries,我想用 tools:replace 替换 android:supportsRtl=”false”。
但是有one library 我想让它支持Rtl。
问题是,我可以为需要 android:supportsRtl="true" 以实际支持 RTL 并让其他库被我的应用程序覆盖并保持 android:supportsRtl="false" 的库例外吗?
【问题讨论】:
标签: android android-manifest manifest-merging