- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.ntlab.irisclient" >
-
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
-
- <application
- android:name=".Iris"
- android:allowBackup="true"
- android:icon="@mipmap/ic_launcher"
- android:inputType="text"
- android:label="@string/app_name"
- android:roundIcon="@mipmap/ic_launcher_round"
- android:supportsRtl="true"
- android:theme="@style/Theme.IrisClient"
- android:usesCleartextTraffic="true" >
- <activity
- android:name=".GamePlayerListFragment"
- android:exported="false" />
- <activity
- android:name=".GameMasterActivity"
- android:exported="false" />
- <activity
- android:name=".GameMemberActivity"
- android:exported="false"
- android:screenOrientation="landscape"/>
- <activity
- android:name=".MainActivity"
- android:exported="true"
- android:screenOrientation="landscape" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
-
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- <activity
- android:name=".EnterRoomActivity"
- android:exported="true"
- android:screenOrientation="landscape" />
- <activity
- android:name=".CreateRoomActivity"
- android:exported="true"
- android:screenOrientation="landscape" />
- <activity
- android:name=".MemberRoomActivity"
- android:exported="true"
- android:screenOrientation="landscape" />
- <activity
- android:name=".OwnerRoomActivity"
- android:exported="true"
- android:screenOrientation="landscape" />
- <activity
- android:name=".DrawingActivity"
- android:exported="true"
- android:screenOrientation="landscape" />
- <activity
- android:name=".TestEnterActivity"
- android:exported="true"
- android:screenOrientation="landscape" />
- <activity
- android:name=".TestDrawingActivity"
- android:exported="true"
- android:screenOrientation="landscape" />
- <activity
- android:name=".TestGameActivity"
- android:exported="true"
- android:screenOrientation="landscape" />
- </application>
-
- </manifest>