Mercurial > cgi-bin > hgweb.cgi > SimpleResizer
view app/src/main/AndroidManifest.xml @ 25:648908f492c0
Fix output file names.
author | David Barts <n5jrn@me.com> |
---|---|
date | Tue, 23 Feb 2021 18:36:19 -0800 |
parents | 20da616dcda0 |
children | 70f1d11d53ad |
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.bartsent.simpleresizer"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.SimpleResizer"> <activity android:name=".SettingsActivity" android:label="@string/title_activity_settings"> <meta-data android:name="android.support.PARENT_ACTIVITY" android:value=".EditImage"/> <intent-filter> <action android:name="android.intent.action.APPLICATION_PREFERENCES" /> <category android:name="android.intent.category.PREFERENCE" /> </intent-filter> </activity> <activity android:name=".EditImage"> <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="image/*" /> </intent-filter> </activity> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>