blob: c4c3e328a69d668b519256c5509d4cbdbd9efe01 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >
<application android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".CubeActivity"
android:launchMode="singleTop"
android:configChanges="orientation|screenSize"
android:screenOrientation="portrait"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>