Android supportsrtl properties

Android studio comes with new projects android:supportsRtl This property.  

This property states whether your application is willing to support right to left layout.

If it is set to true and targetsdkversion is set to 17 or higher, various RTL APIs will be activated, and the system can display RTL layout using your application. If it is set to false, or targetsdkversion is 16 or lower, the RTL API will be ignored or the application will not be affected (your layout will be from left to right). The default value for this property is false. This property is added to API 17.

Read More: