EvoEgg: Initial app import

* Referenced from :
https://github.com/AICP/packages_apps_Settings/blob/n7.1/src/com/android/settings/aicp/Nyandroid.java

All credits for Nyandroid.java go to the original authors.
Check the following commit for more details:
AICP/packages_apps_Settings@b16b149

Co-authored-by: oddlyspaced <oddlyspaced1@gmail.com>
Signed-off-by: AnierinB <anierin@evolution-x.org>
This commit is contained in:
LorDClockaN
2024-04-09 02:32:40 +00:00
committed by AnierinB
commit 5e3f85e9a5
29 changed files with 447 additions and 0 deletions

37
AndroidManifest.xml Normal file
View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.evolution.easteregg"
android:sharedUserId="android.uid.system"
android:versionCode="1"
android:versionName="R">
<uses-sdk
android:minSdkVersion="28"
android:targetSdkVersion="29" />
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_title"
android:theme="@style/AppTheme">
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
tools:replace="android:authorities"/>
<activity
android:name=".EasterEgg"
android:exported="true"
android:label="EvoEgg"
android:hardwareAccelerated="true"
android:launchMode="singleInstance"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>