OSDN Git Service

Androidの古いバージョンでの対応を追加。
[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     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
5     <application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/Theme.AppCompat">
6         <activity android:name=".Main"
7             android:exported="true">
8             <intent-filter>
9                 <action android:name="android.intent.action.MAIN" />
10                 <category android:name="android.intent.category.LAUNCHER" />
11             </intent-filter>
12         </activity>
13         <activity android:name=".preference.Preference" android:label="@string/preference_name">
14         </activity>
15         <activity android:name=".extension.ExtensionActivity"
16             android:exported="false"
17             android:label="@string/extent_name">
18             <intent-filter>
19                 <action android:name="jp.sfjp.gokigen.memoma.extension.activity" />
20                 <category android:name="android.intent.category.DEFAULT" />
21             </intent-filter>
22         </activity>
23         <provider
24             android:name="androidx.core.content.FileProvider"
25             android:authorities="jp.sourceforge.gokigen.memoma.fileprovider"
26             android:exported="false"
27             android:grantUriPermissions="true"
28             >
29             <meta-data
30                 android:name="android.support.FILE_PROVIDER_PATHS"
31                 android:resource="@xml/file_paths"
32                 />
33         </provider>
34         <meta-data android:name="android.max_aspect" android:value="ratio_float"/>
35     </application>
36 </manifest>