Spherical/app/src/main/AndroidManifest.xml

38 lines
1.5 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
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
2017-09-14 00:33:37 +02:00
android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen">
2017-09-14 01:11:59 +02:00
<activity android:name=".MainActivity"
android:screenOrientation="portrait">
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>