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 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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
  6. android:name="android.hardware.camera"
  7. android:required="true" />
  8. <uses-feature
  9. android:name="android.hardware.camera.autofocus"
  10. android:required="true" />
  11. <uses-feature
  12. android:name="android.hardware.camera.front"
  13. android:required="true" />
  14. <uses-feature
  15. android:name="android.hardware.camera.front.autofocus"
  16. android:required="true" />
  17. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  18. <application
  19. android:allowBackup="true"
  20. android:icon="@mipmap/ic_launcher"
  21. android:label="@string/app_name"
  22. android:roundIcon="@mipmap/ic_launcher_round"
  23. android:supportsRtl="true"
  24. android:theme="@style/AppTheme">
  25. <activity
  26. android:name=".StartActivity"
  27. android:label="@string/app_name"
  28. android:screenOrientation="portrait"
  29. android:theme="@style/AppTheme.NoActionBar">
  30. <intent-filter>
  31. <action android:name="android.intent.action.MAIN" />
  32. <category android:name="android.intent.category.LAUNCHER" />
  33. </intent-filter>
  34. </activity>
  35. <activity
  36. android:name=".MainGameActivity"
  37. android:label="@string/title_activity_main_game"
  38. android:screenOrientation="portrait"
  39. android:theme="@style/AppTheme.NoActionBar" />
  40. <activity
  41. android:name=".ChooseGame"
  42. android:label="@string/title_choose_game"
  43. android:screenOrientation="portrait"
  44. android:theme="@style/AppTheme.NoActionBar" />
  45. <activity
  46. android:name=".CardCaptureActivity"
  47. android:screenOrientation="portrait"
  48. android:theme="@style/AppTheme.NoActionBar"/>
  49. </application>
  50. </manifest>