Difference between revisions of "Team:Bielefeld-CeBiTec/Software/SourceCode"
(Created page with "{{Bielefeld-CeBiTec/Header}} <html> <head> <script> $("#sourcecode").addClass("navbar-active"); </script> </head> <body id="sourcecode"> </body> </html> {{Bielefeld-CeB...") |
|||
Line 10: | Line 10: | ||
<body id="sourcecode"> | <body id="sourcecode"> | ||
− | + | <?xml version="1.0" encoding="utf-8"?> | |
+ | <manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
+ | package="de.anna.cellfreestick" > | ||
+ | |||
+ | <uses-feature | ||
+ | android:name="android.hardware.camera" | ||
+ | android:required="true" /> | ||
+ | |||
+ | <uses-permission android:name="android.permission.CAMERA" /> | ||
+ | <uses-permission android:name="android.permission.FLASHLIGHT" /> | ||
+ | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
+ | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
+ | |||
+ | <application | ||
+ | android:allowBackup="true" | ||
+ | android:icon="@mipmap/ic_launcher" | ||
+ | android:label="@string/app_name" | ||
+ | android:theme="@style/AppTheme" > | ||
+ | <activity | ||
+ | android:name=".MainActivity" | ||
+ | android:label="@string/app_name" > | ||
+ | <intent-filter> | ||
+ | <action android:name="android.intent.action.MAIN" /> | ||
+ | |||
+ | <category android:name="android.intent.category.LAUNCHER" /> | ||
+ | </intent-filter> | ||
+ | </activity> | ||
+ | <activity | ||
+ | android:name=".Instructions" | ||
+ | android:logo="@drawable/icon_igem" | ||
+ | android:label="@string/title_activity_instructions2" > | ||
+ | </activity> | ||
+ | <activity | ||
+ | android:name=".TakePhoto" | ||
+ | android:label="@string/title_activity_take_photo" > | ||
+ | </activity> | ||
+ | <activity | ||
+ | android:name=".Results" | ||
+ | android:label="@string/title_activity_results" > | ||
+ | </activity> | ||
+ | <activity | ||
+ | android:name=".Analysis" | ||
+ | android:label="@string/title_activity_analysis" > | ||
+ | </activity> | ||
+ | <activity | ||
+ | android:name=".HeavyMetalsDetailsActivity" | ||
+ | android:label="@string/title_activity_heavy_metals_details" > | ||
+ | </activity> | ||
+ | <activity | ||
+ | android:name=".ContaminationList" | ||
+ | android:label="@string/title_activity_contamination_list" > | ||
+ | </activity> | ||
+ | </application> | ||
+ | |||
+ | </manifest> | ||
</body> | </body> |
Revision as of 21:12, 13 September 2015