Advertisement
AzisMM

AndroidManifest.xml

Sep 15th, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 1.08 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.azis.bitaqwaapp">
  4.  
  5.     <application
  6.         android:allowBackup="true"
  7.         android:icon="@mipmap/ic_launcher"
  8.         android:label="@string/app_name"
  9.         android:roundIcon="@mipmap/ic_launcher_round"
  10.         android:supportsRtl="true"
  11.         android:theme="@style/AppTheme">
  12.         <activity android:name=".menus.zakat.MenuZakatActivity"></activity>
  13.         <activity android:name=".menus.videokajian.MenuVideoKajianActivity" />
  14.         <activity android:name=".menus.jadwalsholat.MenuJadwalSholatActivity" />
  15.         <activity android:name=".menus.dzikir.MenuDzikirActivity" />
  16.         <activity android:name=".menus.doa.MenuDoaActivity" />
  17.         <activity android:name=".DashboardActivity">
  18.             <intent-filter>
  19.                 <action android:name="android.intent.action.MAIN" />
  20.  
  21.                 <category android:name="android.intent.category.LAUNCHER" />
  22.             </intent-filter>
  23.         </activity>
  24.     </application>
  25.  
  26. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement