Newer
Older
IrisClient / app / src / main / AndroidManifest.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="org.ntlab.irisclient" >
  4.  
  5. <uses-permission android:name="android.permission.INTERNET" />
  6. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  7.  
  8. <application
  9. android:name=".Iris"
  10. android:allowBackup="true"
  11. android:icon="@mipmap/ic_launcher"
  12. android:inputType="text"
  13. android:label="@string/app_name"
  14. android:roundIcon="@mipmap/ic_launcher_round"
  15. android:supportsRtl="true"
  16. android:theme="@style/Theme.IrisClient"
  17. android:usesCleartextTraffic="true" >
  18. <activity
  19. android:name=".GamePlayerListFragment"
  20. android:exported="false" />
  21. <activity
  22. android:name=".GameMasterActivity"
  23. android:exported="false" />
  24. <activity
  25. android:name=".GameMemberActivity"
  26. android:exported="false"
  27. android:screenOrientation="landscape"/>
  28. <activity
  29. android:name=".MainActivity"
  30. android:exported="true"
  31. android:screenOrientation="landscape" >
  32. <intent-filter>
  33. <action android:name="android.intent.action.MAIN" />
  34.  
  35. <category android:name="android.intent.category.LAUNCHER" />
  36. </intent-filter>
  37. </activity>
  38. <activity
  39. android:name=".EnterRoomActivity"
  40. android:exported="true"
  41. android:screenOrientation="landscape" />
  42. <activity
  43. android:name=".CreateRoomActivity"
  44. android:exported="true"
  45. android:screenOrientation="landscape" />
  46. <activity
  47. android:name=".MemberRoomActivity"
  48. android:exported="true"
  49. android:screenOrientation="landscape" />
  50. <activity
  51. android:name=".OwnerRoomActivity"
  52. android:exported="true"
  53. android:screenOrientation="landscape" />
  54. <activity
  55. android:name=".DrawingActivity"
  56. android:exported="true"
  57. android:screenOrientation="landscape" />
  58. <activity
  59. android:name=".TestEnterActivity"
  60. android:exported="true"
  61. android:screenOrientation="landscape" />
  62. <activity
  63. android:name=".TestDrawingActivity"
  64. android:exported="true"
  65. android:screenOrientation="landscape" />
  66. <activity
  67. android:name=".TestGameActivity"
  68. android:exported="true"
  69. android:screenOrientation="landscape" />
  70. </application>
  71.  
  72. </manifest>