Advertisement
farizafifabbad

qrcode_manifest

Apr 28th, 2014
966
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.example.qrcode_fariz_using_library"
  4.    android:versionCode="1"
  5.    android:versionName="1.0" >
  6.  
  7.     <uses-sdk android:minSdkVersion="15" />
  8.  <uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
  9.  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  10.  
  11.     <application
  12.        android:icon="@drawable/ic_launcher"
  13.        android:label="@string/app_name"
  14.        android:theme="@android:style/Theme.Holo.Light">
  15.         <activity
  16.            android:name=".GenerateQRCodeActivity"
  17.            android:label="@string/app_name" >
  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