Advertisement
Chinedum

AndroidManifest

Jul 16th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.91 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.myacl4challenge">
  4.  
  5.     <uses-permission-sdk-23 android:name="android.permission.INTERNET" />
  6.  
  7.  
  8.  
  9.     <application
  10.        android:allowBackup="true"
  11.        android:icon="@mipmap/ic_launcher"
  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=".ActivityC"></activity>
  17.         <activity android:name=".ActivityB" />
  18.         <activity android:name=".MainActivity">
  19.             <intent-filter>
  20.                 <action android:name="android.intent.action.MAIN" />
  21.  
  22.                 <category android:name="android.intent.category.LAUNCHER" />
  23.             </intent-filter>
  24.         </activity>
  25.     </application>
  26.  
  27. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement