Advertisement
ms_olin

Untitled

Apr 22nd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.96 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    package="com.androidhive.flashlight"
  4.    android:versionCode="1"
  5.    android:versionName="1.0" >
  6.      
  7.     <uses-permission android:name="android.permission.CAMERA" />
  8.     <uses-feature android:name="android.hardware.camera" />
  9.  
  10.     <application
  11.        android:allowBackup="true"
  12.        android:icon="@drawable/ic_launcher"
  13.        android:label="@string/app_name"
  14.        android:theme="@style/AppTheme" >
  15.         <activity
  16.            android:name="com.androidhive.flashlight.MainActivity"
  17.            android:label="@string/app_name"
  18.            android:screenOrientation="portrait">
  19.             <intent-filter>
  20.                 <action android:name="android.intent.action.MAIN" />
  21.  
  22.                 <category android:name="android.intent.category.LAUNCHER" />
  23.             </intent-filter>
  24.         </activity>
  25.     </application>
  26.  
  27. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement