Advertisement
MateuszGrabarczyk

activitymanifest

Dec 8th, 2022
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.68 KB | None | 0 0
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.lab5">
  2.     <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.Lab5">
  3.         <activity android:name=".MainActivity" android:exported="true" android:screenOrientation="sensorPortrait">
  4.             <intent-filter>
  5.                 <action android:name="android.intent.action.MAIN"/>
  6.                 <category android:name="android.intent.category.LAUNCHER"/>
  7.             </intent-filter>
  8.         </activity>
  9.     </application>
  10. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement