* Commits below include features from A15 that were preserved but had their implementations changed/replaced. Update strings Add Fluid power menu style Add Volume sound feedback Re-arrange developer category options Enable PIF spoof by default Drop Play store spoof Restore QS layout settings Add option to disable quicksettings on keyguard Add lockscreen media art Add pulse visualizer Add fading block renderer for Pulse Use master switch for pulse enable Update for edge light feature updates - Add 4-side rounded style option for edge light - Add rainbow gradient color mode - Add 3 new pulse style - Fix default values for edge light customization - Make ambient pulse configurable - Fix default value for edge light style Co-authored-by: Pranav Vashi <neobuddy89@gmail.com> Co-authored-by: rmp22 <195054967+rmp22@users.noreply.github.com> Co-authored-by: Ghosuto <clash.raja10@gmail.com>
95 lines
3.2 KiB
XML
95 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2019-2025 Evolution X
|
|
SPDX-License-Identifier: Apache-2.0
|
|
-->
|
|
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
|
|
android:title="@string/about_title">
|
|
|
|
<!-- Evolution X logo -->
|
|
<com.android.settingslib.widget.LayoutPreference
|
|
android:key="evolution_logo"
|
|
android:layout="@layout/evolution_logo"
|
|
android:clickable="false"
|
|
settings:controller="com.android.settings.deviceinfo.firmwareversion.EvolutionXLogoPreferenceController"/>
|
|
|
|
<!-- Info -->
|
|
<com.android.settingslib.widget.TopIntroPreference
|
|
android:title="@string/about_info" />
|
|
|
|
<!-- Website -->
|
|
<Preference
|
|
android:title="@string/about_website_title"
|
|
android:summary="@string/about_website_summary"
|
|
android:icon="@drawable/ic_evolver_about">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://evolution-x.org" />
|
|
</Preference>
|
|
|
|
<!-- Github -->
|
|
<Preference
|
|
android:title="@string/about_github_title"
|
|
android:summary="@string/about_github_summary"
|
|
android:icon="@drawable/ic_about_github">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://github.com/Evolution-X" />
|
|
</Preference>
|
|
|
|
<!-- Discord -->
|
|
<Preference
|
|
android:title="@string/about_discord_title"
|
|
android:summary="@string/about_discord_summary"
|
|
android:icon="@drawable/ic_about_discord">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://discord.gg/3qbSZHx" />
|
|
</Preference>
|
|
|
|
<!-- X -->
|
|
<Preference
|
|
android:title="@string/about_x_title"
|
|
android:summary="@string/about_x_summary"
|
|
android:icon="@drawable/ic_about_x">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://x.com/EvolutionXROM" />
|
|
</Preference>
|
|
|
|
<PreferenceCategory
|
|
android:key="founders"
|
|
android:title="@string/about_founders_title" />
|
|
|
|
<!-- Founder 1 -->
|
|
<Preference
|
|
android:title="@string/about_founder_1_title"
|
|
android:summary="@string/about_founder_1_summary">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://linktr.ee/joeyhuab" />
|
|
</Preference>
|
|
|
|
<!-- Founder 2 -->
|
|
<Preference
|
|
android:title="@string/about_founder_2_title"
|
|
android:summary="@string/about_founder_2_summary">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://www.paypal.me/AnierinB" />
|
|
</Preference>
|
|
|
|
<!-- Founder 3 -->
|
|
<Preference
|
|
android:title="@string/about_founder_3_title"
|
|
android:summary="@string/about_founder_3_summary">
|
|
<intent
|
|
android:action="android.intent.action.VIEW"
|
|
android:data="https://t.me/RealAkito" />
|
|
</Preference>
|
|
|
|
</PreferenceScreen>
|