Projekt Schafkopfpunktezähler: Erster Prototyp einer App, die dem Benutzer die Notwendigkeit des Punktezählens beim Schafkopfspiel abnimmt.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AndroidManifest.xml 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="project.schafkopfzaehler_2">
  4. <uses-permission android:name="android.permission.CAMERA"/>
  5. <uses-feature android:name="android.hardware.camera" android:required="false"/>
  6. <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
  7. <uses-feature android:name="android.hardware.camera.front" android:required="false"/>
  8. <uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>
  9. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  10. <application
  11. android:allowBackup="true"
  12. android:icon="@mipmap/ic_launcher"
  13. android:label="@string/app_name"
  14. android:roundIcon="@mipmap/ic_launcher_round"
  15. android:supportsRtl="true"
  16. android:theme="@style/AppTheme">
  17. <activity
  18. android:name=".StartActivity"
  19. android:label="@string/app_name"
  20. android:screenOrientation="portrait"
  21. android:theme="@style/AppTheme.NoActionBar">
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. <activity
  28. android:name=".MainGameActivity"
  29. android:label="@string/title_activity_main_game"
  30. android:screenOrientation="portrait"
  31. android:theme="@style/AppTheme.NoActionBar"
  32. />
  33. <activity
  34. android:name=".ChooseGame"
  35. android:label="@string/title_choose_game"
  36. android:screenOrientation="portrait"
  37. android:theme="@style/AppTheme.NoActionBar"
  38. />
  39. </application>
  40. </manifest>