-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
23 lines (21 loc) · 817 Bytes
/
AndroidManifest.xml
File metadata and controls
23 lines (21 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:icon="@mipmap/ic_launcher"
android:label="Version Compare"
android:theme="@style/AppTheme"
android:allowBackup="false"
tools:ignore="DataExtractionRules">
<activity
android:name="io.github.g00fy2.versioncomparesample.MainActivity"
android:exported="true"
android:screenOrientation="portrait"
tools:ignore="DiscouragedApi,LockedOrientationActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>