I imported a github library using gradle , it works fine except it supports RTL and my project doesn't, I tried using :
tools:replace="supportsRtl"
in my manifest but didnt work , any suggestion ??
I imported a github library using gradle , it works fine except it supports RTL and my project doesn't, I tried using :
tools:replace="supportsRtl"
in my manifest but didnt work , any suggestion ??
In your manifest
file and inside the application tag add these two lines.
<manifest>
<application
.
.
.
android:supportsRtl="false"
tools:replace="android:supportsRtl" //(replace libraries' Rtl support with ours)
>
</application>
</manifest>
when some libraries have support Rtl
, you have to make a change in their manifest
file , so if you want to use them you must replace their manifest
line of code with yours.