OSDN Git Service

xml形式のデータインポートとエクスポート機能を搭載している途中。
[gokigen/MeMoMa.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     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
4     <application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/Theme.AppCompat">
5         <activity android:name=".Main"
6             android:exported="true">
7             <intent-filter>
8                 <action android:name="android.intent.action.MAIN" />
9                 <category android:name="android.intent.category.LAUNCHER" />
10             </intent-filter>
11         </activity>
12         <activity android:name=".preference.Preference" android:label="@string/preference_name">
13         </activity>
14         <activity android:name=".extension.ExtensionActivity"
15             android:exported="false"
16             android:label="@string/extent_name">
17             <intent-filter>
18                 <action android:name="jp.sfjp.gokigen.memoma.extension.activity" />
19                 <category android:name="android.intent.category.DEFAULT" />
20             </intent-filter>
21         </activity>
22         <provider
23             android:name="androidx.core.content.FileProvider"
24             android:authorities="jp.sourceforge.gokigen.memoma.fileprovider"
25             android:exported="false"
26             android:grantUriPermissions="true"
27             >
28             <meta-data
29                 android:name="android.support.FILE_PROVIDER_PATHS"
30                 android:resource="@xml/file_paths"
31                 />
32         </provider>
33         <meta-data android:name="android.max_aspect" android:value="ratio_float"/>
34     </application>
35 </manifest>