Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  4.     package="unab.semovil.myapplication">
  5.  
  6.     <application
  7.         xmlns:tools="http://schemas.android.com/tools"
  8.         android:allowBackup="true"
  9.         tools:replace="android:icon,android:theme"
  10.         android:icon="@mipmap/ic_launcher2"
  11.         android:name="com.orm.SugarApp"
  12.         android:label="@string/app_name"
  13.         android:roundIcon="@mipmap/ic_launcher_round"
  14.         android:supportsRtl="true"
  15.         android:theme="@style/AppTheme">
  16.         <activity android:name=".MainActivity">
  17.             <intent-filter>
  18.                 <action android:name="android.intent.action.MAIN" />
  19.  
  20.                 <category android:name="android.intent.category.LAUNCHER" />
  21.             </intent-filter>
  22.         </activity>
  23.  
  24.  
  25.         <meta-data android:name="DOMAIN_PACKAGE_NAME" android:value="unab.semovil.myapplication" />
  26.     </application>
  27.  
  28. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement