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.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <uses-permission android:name="android.permission.INTERNET" />
  19. <application
  20. android:allowBackup="true"
  21. android:icon="@mipmap/ic_launcher"
  22. android:label="@string/app_name"
  23. android:roundIcon="@mipmap/ic_launcher_round"
  24. android:supportsRtl="true"
  25. android:theme="@style/AppTheme">
  26. <activity
  27. android:name=".StartActivity"
  28. android:label="@string/app_name"
  29. android:screenOrientation="portrait"
  30. android:theme="@style/AppTheme.NoActionBar">
  31. <intent-filter>
  32. <action android:name="android.intent.action.MAIN" />
  33. <category android:name="android.intent.category.LAUNCHER" />
  34. </intent-filter>
  35. </activity>
  36. <activity
  37. android:name=".MainGameActivity"
  38. android:label="@string/title_activity_main_game"
  39. android:screenOrientation="portrait"
  40. android:theme="@style/AppTheme.NoActionBar" />
  41. <activity
  42. android:name=".ChooseGame"
  43. android:label="@string/title_choose_game"
  44. android:screenOrientation="portrait"
  45. android:theme="@style/AppTheme.NoActionBar" />
  46. <activity
  47. android:name=".CardCaptureActivity"
  48. android:screenOrientation="portrait"
  49. android:theme="@style/AppTheme.NoActionBar"/>
  50. </application>
  51. </manifest>