| <?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> |