Files
packages_apps_Pif/AndroidManifest.xml
AnierinB fc1a93ac0a Pif: Initialize
Signed-off-by: AnierinB <anierin@evolution-x.org>
2024-08-22 19:48:00 -07:00

30 lines
966 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2023-2024 The Evolution X Project
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:sharedUserId="android.uid.system"
package="com.goolag.pif"
android:versionCode="3"
android:versionName="3.0" >
<application
android:label="@string/app_name"
android:theme="@style/Theme.SubSettingsBase">
<!-- Pif activity -->
<activity
android:name=".PifActivity"
android:label="@string/pif_title"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>