Android App zur Berechnung einer HDR Belichtungsreihe.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AndroidManifest.xml 642B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. package="ch.spherIC"
  5. android:versionCode="1"
  6. android:versionName="0.9.0">
  7. <application
  8. android:icon="@drawable/icon"
  9. android:label="@string/app_name"
  10. android:theme="@style/GlassTheme">
  11. <activity
  12. android:name=".EasyBracketMain"
  13. android:label="@string/app_name">
  14. <intent-filter>
  15. <action
  16. android:name="android.intent.action.MAIN" />
  17. <category
  18. android:name="android.intent.category.LAUNCHER" />
  19. </intent-filter>
  20. </activity>
  21. </application>
  22. <uses-sdk
  23. android:minSdkVersion="4" />
  24. </manifest>