Spherical/app/src/main/AndroidManifest.xml

38 lines
1.4 KiB
XML
Raw Normal View History

2017-09-12 14:54:41 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.trac.spherical">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
2017-09-12 14:54:41 +02:00
<application
2017-09-15 01:30:06 +02:00
android:allowBackup="false"
2017-09-12 14:54:41 +02:00
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
2017-09-14 20:39:33 +02:00
>
2017-09-14 01:11:59 +02:00
<activity android:name=".MainActivity"
2017-09-14 20:39:33 +02:00
android:screenOrientation="portrait"
android:theme="@style/AppTheme">
2017-09-12 17:42:14 +02:00
<!-- Launcher -->
2017-09-12 14:54:41 +02:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
2017-09-12 17:42:14 +02:00
<!-- Spherical images -->
<intent-filter>
<data android:mimeType="application/vnd.google.panorama360+jpg" />
2017-09-12 18:11:58 +02:00
<action android:name="android.intent.action.SEND" />
2017-09-12 17:42:14 +02:00
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<data android:mimeType="image/*" />
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
2017-09-12 14:54:41 +02:00
</activity>
</application>
</manifest>