-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
34 changed files
with
705 additions
and
646 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,35 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="ua.leonidius.rtlnotepad" | ||
android:installLocation="auto"> | ||
package="ua.leonidius.rtlnotepad" | ||
android:installLocation="auto"> | ||
|
||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
|
||
<application | ||
android:name=".MyApplication" | ||
android:supportsRtl="true" | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/Leonidius.Light"> | ||
android:name=".MyApplication" | ||
android:supportsRtl="true" | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/Leonidius.Light"> | ||
|
||
<activity | ||
android:name=".MainActivity" | ||
android:windowSoftInputMode="stateHidden" | ||
android:label="@string/app_name"> | ||
android:name=".MainActivity" | ||
android:windowSoftInputMode="stateHidden" | ||
android:label="@string/app_name"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<action android:name="android.intent.action.EDIT" /> | ||
<action android:name="android.intent.action.VIEW"/> | ||
<action android:name="android.intent.action.EDIT"/> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
<data | ||
android:mimeType="text/*" | ||
android:scheme="file" /> | ||
<category android:name="android.intent.category.DEFAULT"/> | ||
<data android:mimeType="text/*"/> | ||
</intent-filter> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".TestingActivity" | ||
android:windowSoftInputMode="stateHidden" | ||
android:label="@string/app_name"/> | ||
|
||
</application> | ||
|
||
</manifest> | ||
</manifest> |
Oops, something went wrong.