Android App zur Berechnung einer HDR Belichtungsreihe.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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>