zza_ibliizt

LoginDatabase AndroidManifest.xml

Dec 19th, 2018
1,246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.18 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.logindatabase"
  4.    android:versionCode="1"
  5.    android:versionName="1.0" >
  6.     <uses-sdk
  7.        android:minSdkVersion="8"/>
  8.    
  9.     <!-- PERHATIKAN!: "android.permission.INTERNET" ini digunakan
  10.         kalo agan mau pake database online (Server Hosting)  -->  
  11.     <!--
  12.     <uses-permission android:name="android.permission.INTERNET"/> -->
  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.example.logindatabase.login"
  21.            android:label="@string/app_name" >
  22.             <intent-filter>
  23.                 <action android:name="android.intent.action.MAIN" />
  24.                 <category android:name="android.intent.category.LAUNCHER" />
  25.             </intent-filter>
  26.         </activity>
  27.         <activity
  28.            android:name="com.example.logindatabase.home"
  29.            android:label="@string/app_name" >
  30.         </activity>
  31.     </application>
  32. </manifest>
Add Comment
Please, Sign In to add comment