File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ package =" com.survivingwithandroid.facedetection"
4
+ android : versionCode =" 1"
5
+ android : versionName =" 1.0" >
6
+
7
+ <uses-sdk
8
+ android : minSdkVersion =" 8"
9
+ android : targetSdkVersion =" 17" />
10
+ <uses-permission android : name =" android.permission.CAMERA" />
11
+
12
+ <application
13
+ android : allowBackup =" true"
14
+ android : icon =" @drawable/ic_launcher"
15
+ android : label =" @string/app_name"
16
+ android : theme =" @style/AppTheme" >
17
+ <activity
18
+ android : name =" com.survivingwithandroid.facedetection.MainActivity"
19
+ android : label =" @string/app_name" >
20
+ <intent-filter >
21
+ <action android : name =" android.intent.action.MAIN" />
22
+
23
+ <category android : name =" android.intent.category.LAUNCHER" />
24
+ </intent-filter >
25
+ </activity >
26
+ </application >
27
+
28
+ </manifest >
You can’t perform that action at this time.
0 commit comments