]> jfr.im git - i.jfr.im-android.git/blob - app/src/main/AndroidManifest.xml
init
[i.jfr.im-android.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools" >
4 <uses-permission android:name="android.permission.INTERNET" />
5
6 <application
7 android:allowBackup="true"
8 android:dataExtractionRules="@xml/data_extraction_rules"
9 android:fullBackupContent="@xml/backup_rules"
10 android:icon="@mipmap/ic_launcher"
11 android:label="@string/app_name"
12 android:roundIcon="@mipmap/ic_launcher_round"
13 android:supportsRtl="true"
14 android:theme="@style/Theme.Ijfrim"
15 tools:targetApi="31" >
16 <activity
17 android:name=".ShareActivity"
18 android:exported="true"
19 android:theme="@style/Theme.AppCompat">
20 <intent-filter>
21 <action android:name="android.intent.action.SEND" />
22 <category android:name="android.intent.category.DEFAULT" />
23 <data android:mimeType="image/*" />
24 </intent-filter>
25 </activity>
26 <activity
27 android:name=".SettingsActivity"
28 android:exported="true"
29 android:label="@string/app_name"
30 android:theme="@style/Theme.Ijfrim" >
31 <intent-filter>
32 <action android:name="android.intent.action.MAIN" />
33
34 <category android:name="android.intent.category.LAUNCHER" />
35 </intent-filter>
36 </activity>
37 </application>
38
39 </manifest>