Advertisement
olcayertas

Android Manifest

May 23rd, 2014
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    xmlns:opencv="http://schemas.android.com/apk/res-auto"
  5.    xmlns:tools="http://schemas.android.com/tools"
  6.    package="com.mukcay.cvtest"
  7.    android:versionCode="1"
  8.    android:versionName="1.0" >
  9.  
  10.     <uses-sdk
  11.        android:minSdkVersion="19"
  12.        android:targetSdkVersion="19" />
  13.    
  14.     <uses-permission android:name="android.permission.CAMERA"/>
  15.  
  16.     <uses-feature android:name="android.hardware.camera" android:required="false"/>
  17.     <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
  18.     <uses-feature android:name="android.hardware.camera.front" android:required="false"/>
  19.     <uses-feature android:name="android.hardware.camera.front.autofocus" android:required="false"/>
  20.  
  21.     <application
  22.        android:allowBackup="true"
  23.        android:icon="@drawable/ic_launcher"
  24.        android:label="@string/app_name"
  25.        android:theme="@style/AppTheme" >
  26.         <activity
  27.            android:name="com.mukcay.cvtest.MainActivity"
  28.            android:label="@string/app_name" >
  29.             <intent-filter>
  30.                 <action android:name="android.intent.action.MAIN" />
  31.                 <category android:name="android.intent.category.LAUNCHER" />
  32.             </intent-filter>
  33.         </activity>
  34.     </application>
  35. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement