Advertisement
Guest User

Untitled

a guest
Dec 9th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.75 KB | None | 0 0
  1. <application
  2.        android:name="com.example.halex.groceriesbuddies.GBApplication"
  3.        android:allowBackup="true"
  4.        android:icon="@mipmap/ic_launcher"
  5.        android:label="@string/app_name"
  6.        android:roundIcon="@mipmap/ic_launcher_round"
  7.        android:supportsRtl="true"
  8.        android:theme="@style/AppTheme">
  9.         <activity android:name=".MainActivity">
  10.             <intent-filter>
  11.                 <action android:name="android.intent.action.MAIN" />
  12.  
  13.                 <category android:name="android.intent.category.LAUNCHER" />
  14.             </intent-filter>
  15.         </activity>
  16.         <activity android:name=".activities.login.Login" />
  17.         <activity android:name=".activities.main.Overview"></activity>
  18.     </application>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement