Advertisement
Guest User

AndroidManifest.xml

a guest
Jan 23rd, 2017
150
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
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    package="com.ecalc"
  5.    android:versionCode="1"
  6.    android:versionName="1.0">
  7.  
  8.     <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="21" />
  9.  
  10.     <application
  11.        android:allowBackup="true"
  12.        android:icon="@drawable/ic_launcher"
  13.        android:label="@string/app_name"
  14.        android:theme="@style/AppTheme">
  15.  
  16.         <activity
  17.            android:name=".Novatela"
  18.            android:label="@string/title_activity_novatela">
  19.            
  20.             <intent-filter>
  21.                 <action android:name="android.intent.action.MAIN" />
  22.                 <category android:name="android.intent.category.LAUNCHER" />
  23.             </intent-filter>
  24.         </activity>
  25.  
  26.         <activity
  27.            android:name=".CalculadoraActivity"
  28.            android:label="@string/app_name" />
  29.  
  30.     </application>
  31. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement