Advertisement
fannyxmikasa

AndroidManifest.xml

Feb 4th, 2021
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.17 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.myapplication"
  4.    android:versionCode="1"
  5.    android:versionName="1.0" >
  6.  
  7.     <uses-sdk
  8.        android:minSdkVersion="23"
  9.        android:targetSdkVersion="30" />
  10.  
  11.     <application
  12.        android:allowBackup="true"
  13.        android:appComponentFactory="androidx.core.app.CoreComponentFactory"
  14.        android:debuggable="true"
  15.        android:extractNativeLibs="false"
  16.        android:icon="@mipmap/ic_launcher"
  17.        android:label="@string/app_name"
  18.        android:roundIcon="@mipmap/ic_launcher_round"
  19.        android:supportsRtl="true"
  20.        android:testOnly="true"
  21.        android:theme="@style/Theme.MyApplication" >
  22.         <activity android:name="com.example.myapplication.MainActivity2" />
  23.         <activity android:name="com.example.myapplication.MainActivity" >
  24.             <intent-filter>
  25.                 <action android:name="android.intent.action.MAIN" />
  26.  
  27.                 <category android:name="android.intent.category.LAUNCHER" />
  28.             </intent-filter>
  29.         </activity>
  30.     </application>
  31.  
  32. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement