Advertisement
Guest User

Untitled

a guest
May 10th, 2014
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.01 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.try16dev.dbpf"
  4.    android:versionCode="1"
  5.    android:versionName="1.0" >
  6.  
  7.     <uses-sdk
  8.        android:minSdkVersion="10"
  9.        android:targetSdkVersion="10" />
  10.     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  11.     <permission  android:name="android.permission.INTERNET"/>
  12.      
  13.      
  14.     <application
  15.        android:allowBackup="true"
  16.        android:icon="@drawable/ic_launcher"
  17.        android:label="@string/app_name"
  18.        android:theme="@style/AppTheme" >
  19.         <activity
  20.            android:name="com.try16dev.dbpf.DbpfActivity"
  21.            android:label="@string/app_name" >
  22.             <intent-filter>
  23.                 <action android:name="android.intent.action.MAIN" />
  24.  
  25.                 <category android:name="android.intent.category.LAUNCHER" />
  26.             </intent-filter>
  27.         </activity>
  28.     </application>
  29.  
  30. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement