Mercurial > cgi-bin > hgweb.cgi > SimpleResizer
comparison app/src/main/AndroidManifest.xml @ 36:70f1d11d53ad
Attempt to make it work on Android 9 and earlier.
author | David Barts <n5jrn@me.com> |
---|---|
date | Fri, 19 Mar 2021 12:49:13 -0700 |
parents | 20da616dcda0 |
children | cfb19d4ccf78 |
comparison
equal
deleted
inserted
replaced
35:6607f675a5f7 | 36:70f1d11d53ad |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
3 package="com.bartsent.simpleresizer"> | 3 package="com.bartsent.simpleresizer"> |
4 | |
5 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" | |
6 android:maxSdkVersion="28" /> | |
4 | 7 |
5 <application | 8 <application |
6 android:allowBackup="true" | 9 android:allowBackup="true" |
7 android:icon="@mipmap/ic_launcher" | 10 android:icon="@mipmap/ic_launcher" |
8 android:label="@string/app_name" | 11 android:label="@string/app_name" |
9 android:roundIcon="@mipmap/ic_launcher_round" | 12 android:roundIcon="@mipmap/ic_launcher_round" |
10 android:supportsRtl="true" | 13 android:supportsRtl="true" |
11 android:theme="@style/Theme.SimpleResizer"> | 14 android:theme="@style/Theme.SimpleResizer"> |
12 | 15 |
13 <activity android:name=".SettingsActivity" android:label="@string/title_activity_settings"> | 16 <activity android:name=".SettingsActivity" android:label="@string/title_activity_settings"> |
14 <meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".EditImage"/> | 17 <meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".EditImage" /> |
15 <intent-filter> | 18 <intent-filter> |
16 <action android:name="android.intent.action.APPLICATION_PREFERENCES" /> | 19 <action android:name="android.intent.action.APPLICATION_PREFERENCES" /> |
17 <category android:name="android.intent.category.PREFERENCE" /> | 20 <category android:name="android.intent.category.PREFERENCE" /> |
18 </intent-filter> | 21 </intent-filter> |
19 </activity> | 22 </activity> |