Advertisement
ipdan4ik

[lb7] AndroidManifest.xml

Apr 16th, 2021
1,295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.00 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.lb7">
  5.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
  6.     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:ignore="ScopedStorage" />
  7.  
  8.     <application
  9.        android:allowBackup="true"
  10.        android:icon="@mipmap/ic_launcher"
  11.        android:label="@string/app_name"
  12.        android:roundIcon="@mipmap/ic_launcher_round"
  13.        android:supportsRtl="true"
  14.        android:theme="@style/Theme.Lb7">
  15.         <activity android:name=".ItemActivity"/>
  16.         <activity android:name=".MainActivity">
  17.             <intent-filter>
  18.                 <action android:name="android.intent.action.MAIN" />
  19.  
  20.                 <category android:name="android.intent.category.LAUNCHER" />
  21.             </intent-filter>
  22.         </activity>
  23.     </application>
  24.  
  25. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement