Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Removed "android:supportsRtl" #2

Merged
merged 1 commit into from
Dec 24, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions easypermissions/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.example.easypermissions">

<application
android:label="@string/app_name"
android:supportsRtl="true">

</application>

<manifest package="com.google.example.easypermissions">
<application/>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is no longer valid XML. How about this:

<manifest package="com.google.example.easypermissions">
    <application 
            android:label="@string/app_name">
    </application>
</manifest>

</manifest>