Move app files to root folder

This commit is contained in:
Electric1447
2021-09-01 15:24:27 +03:00
parent cd462fd2bb
commit 73befc9e7b
124 changed files with 0 additions and 0 deletions
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content />
@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<PreferenceCategory
android:title="@string/app_name"
app:iconSpaceReserved="false">
<SwitchPreference
android:defaultValue="false"
android:key="batterySaver"
android:summary="@string/batterySaver_desc"
android:title="@string/batterySaver"
app:iconSpaceReserved="false" />
<Preference
android:key="restartService"
android:summary="@string/restart_desc"
android:title="@string/restart"
app:iconSpaceReserved="false" />
</PreferenceCategory>
<PreferenceCategory
android:title="@string/about"
app:iconSpaceReserved="false">
<Preference
android:key="about"
android:summary="@string/app_name"
android:title="@string/about"
app:iconSpaceReserved="false">
<intent
android:targetClass="com.dosse.airpods.ui.AboutActivity"
android:targetPackage="com.dosse.airpods" />
</Preference>
<Preference
android:key="fdroid"
android:title="@string/fdroid"
app:iconSpaceReserved="false">
<intent
android:action="android.intent.action.VIEW"
android:data="@string/fdroid_url" />
</Preference>
<Preference
android:key="website"
android:title="@string/website"
app:iconSpaceReserved="false">
<intent
android:action="android.intent.action.VIEW"
android:data="@string/website_url" />
</Preference>
<Preference
android:key="github"
android:title="@string/github"
app:iconSpaceReserved="false">
<intent
android:action="android.intent.action.VIEW"
android:data="@string/github_url" />
</Preference>
<Preference
android:key="donate"
android:title="@string/donate"
app:iconSpaceReserved="false">
<intent
android:action="android.intent.action.VIEW"
android:data="@string/donate_url" />
</Preference>
</PreferenceCategory>
</PreferenceScreen>