Advertisement
soden

Untitled

Jun 17th, 2022
1,123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.22 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    package="com.example.TugasBesarSyarif">
  5.  
  6.     <uses-feature
  7.        android:name="android.hardware.camera"
  8.        android:required="true" />
  9.  
  10.     <uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
  11.     <uses-permission android:name="android.permission.READ_CONTACTS"/>
  12.  
  13.     <application
  14.        android:allowBackup="true"
  15.        android:icon="@mipmap/ic_launcher"
  16.        android:label="TugasBesarSyarif"
  17.        android:roundIcon="@mipmap/ic_launcher_round"
  18.        android:supportsRtl="true"
  19.        android:theme="@style/Theme.TugasBesarSyarif">
  20.         <activity
  21.            android:name="com.example.TugasBesarSyarif.i3_product"
  22.            android:exported="false" />
  23.         <activity
  24.            android:name="com.example.TugasBesarSyarif.i9_product"
  25.            android:exported="false" />
  26.         <activity
  27.            android:name="com.example.TugasBesarSyarif.i7_product"
  28.            android:exported="false" />
  29.         <activity
  30.            android:name="com.example.TugasBesarSyarif.i5_product"
  31.            android:exported="false" />
  32.         <activity android:name="com.example.TugasBesarSyarif.CategoryActivity"
  33.            android:exported="true">
  34.             <intent-filter>
  35.                 <action android:name="android.intent.action.MAIN" />
  36.  
  37.                 <category android:name="android.intent.category.LAUNCHER" />
  38.                 <!-- put in "launcher" category (first activity on launch app) -->
  39.             </intent-filter>
  40.         </activity>
  41.         <meta-data
  42.            android:name="preloaded_fonts"
  43.            android:resource="@array/preloaded_fonts" />
  44.  
  45.         <provider
  46.            android:name="androidx.core.content.FileProvider"
  47.            android:authorities="com.example.TugasBesarSyarif.fileprovider"
  48.            android:exported="false"
  49.            android:grantUriPermissions="true">
  50.             <meta-data
  51.                android:name="android.support.FILE_PROVIDER_PATHS"
  52.                android:resource="@xml/file_paths" />
  53.         </provider>
  54.     </application>
  55.  
  56. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement