]> piware.de Git - android-PittiHelloWorld.git/blob - app/src/main/AndroidManifest.xml
Add button to take a photo
[android-PittiHelloWorld.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3     package="com.example.pittihelloworld">
4
5     <uses-feature android:name="android.hardware.camera" android:required="true" />
6     <!-- <uses-permission android:name="android.permission.CAMERA" /> does not help -->
7
8     <application
9         android:allowBackup="true"
10         android:icon="@mipmap/ic_launcher"
11         android:label="@string/app_name"
12         android:roundIcon="@mipmap/ic_launcher_round"
13         android:supportsRtl="true"
14         android:theme="@style/AppTheme">
15         <activity android:name=".DisplayMessageActivity" android:parentActivityName=".MainActivity" />
16         <activity android:name=".MainActivity">
17             <intent-filter>
18                 <action android:name="android.intent.action.MAIN" />
19
20                 <category android:name="android.intent.category.LAUNCHER" />
21             </intent-filter>
22         </activity>
23     </application>
24
25 </manifest>