Advertisement
ms_olin

Untitled

Apr 22nd, 2017
1,973
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.91 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.panelic.flashlight">
  4.  
  5.     <uses-permission android:name="android.permission.CAMERA" />
  6.     <uses-feature android:name="android.hardware.camera" />
  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
  16.            android:name=".MainActivity"
  17.            android:screenOrientation="portrait">
  18.             <intent-filter>
  19.                 <action android:name="android.intent.action.MAIN" />
  20.  
  21.                 <category android:name="android.intent.category.LAUNCHER" />
  22.             </intent-filter>
  23.         </activity>
  24.     </application>
  25.  
  26. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement