Advertisement
Guest User

Untitled

a guest
Dec 23rd, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.94 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.example.arturs.cameraappzoom">
  4.  
  5.     <uses-permission android:name="android.permission.CAMERA" />
  6.     <uses-feature android:name="android.hardware.camera" />
  7.  
  8.  
  9.     <application
  10.         android:allowBackup="true"
  11.         android:icon="@mipmap/ic_launcher"
  12.         android:label="@string/app_name"
  13.         android:supportsRtl="true"
  14.         android:theme="@style/AppTheme">
  15.         <activity
  16.             android:name=".MainActivity"
  17.  
  18.             android:configChanges="orientation|screenSize|keyboard"
  19.  
  20.             android:theme="@style/AppTheme.NoActionBar">
  21.             <intent-filter>
  22.                 <action android:name="android.intent.action.MAIN" />
  23.                 <category android:name="android.intent.category.LAUNCHER" />
  24.             </intent-filter>
  25.         </activity>
  26.     </application>
  27.  
  28. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement