Advertisement
kusosuha6vt

Untitled

Mar 3rd, 2023
982
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.27 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:tools="http://schemas.android.com/tools"
  3.    xmlns:android="http://schemas.android.com/apk/res/android">
  4.     <uses-permission android:name="android.permission.INTERNET"/>
  5.     <application
  6.        android:allowBackup="true"
  7.        android:icon="@mipmap/ic_launcher"
  8.        android:label="@string/app_name"
  9.        android:supportsRtl="true"
  10.        android:theme="@style/Theme.StartAndroid">
  11.         <activity
  12.            android:name=".Browser"
  13.            android:exported="true"
  14.            android:label="My Browser">
  15.             <intent-filter tools:ignore="AppLinkUrlError">
  16.                 <action
  17.                    android:name="android.intent.action.VIEW"/>
  18.                 <data
  19.                    android:scheme="https"/>
  20.                 <category android:name="android.intent.category.DEFAULT"/>
  21.             </intent-filter>
  22.         </activity>
  23.         <activity
  24.            android:name=".MainActivity"
  25.            android:exported="true">
  26.             <intent-filter>
  27.                 <action android:name="android.intent.action.MAIN" />
  28.  
  29.                 <category android:name="android.intent.category.LAUNCHER" />
  30.             </intent-filter>
  31.         </activity>
  32.     </application>
  33.  
  34. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement