77 lines
3.1 KiB
XML
77 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2016 Nitrogen Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:title="@string/misc_title"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
|
|
|
|
<!-- Launch music player when headset is connected -->
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="headset_connect_player"
|
|
android:title="@string/headset_connect_player_title"
|
|
android:summary="@string/headset_connect_player_summary"
|
|
android:defaultValue="false" />
|
|
|
|
<com.cherish.settings.preferences.SecureSettingSwitchPreference
|
|
android:key="window_ignore_secure"
|
|
android:title="@string/laboratory_ignore_window_secure_title"
|
|
android:summary="@string/laboratory_ignore_window_secure_summary"
|
|
android:defaultValue="false"/>
|
|
|
|
<!-- Smart Charging -->
|
|
<Preference
|
|
android:key="smart_charging"
|
|
android:title="@string/smart_charging_title"
|
|
android:summary="@string/smart_charging_summary"
|
|
android:fragment="com.cherish.settings.fragments.SmartCharging"/>
|
|
|
|
<!-- Smart Pixels -->
|
|
<Preference
|
|
android:key="smart_pixels"
|
|
android:title="@string/smart_pixels_title"
|
|
android:summary="@string/smart_pixels_summary"
|
|
android:fragment="com.cherish.settings.fragments.SmartPixels" />
|
|
|
|
<!-- Unlock FPS for specific games -->
|
|
<SwitchPreference
|
|
android:key="use_games_spoof"
|
|
android:title="@string/use_games_spoof_title"
|
|
android:summary="@string/use_games_spoof_summary" />
|
|
|
|
<!-- Unlimited Photos storage -->
|
|
<SwitchPreference
|
|
android:key="use_photos_spoof"
|
|
android:title="@string/use_photos_spoof_title"
|
|
android:summary="@string/use_photos_spoof_summary"
|
|
android:defaultValue="true" />
|
|
|
|
<!-- Parallel space -->
|
|
<Preference
|
|
android:key="parallel_space"
|
|
android:title="@string/laboratory_parallel_space_title"
|
|
android:summary="@string/laboratory_parallel_space_summary">
|
|
<intent
|
|
android:targetPackage="ink.kscope.parallelspace"
|
|
android:targetClass="ink.kscope.parallelspace.MainActivity" />
|
|
</Preference>
|
|
|
|
<com.cherish.settings.preferences.SystemSettingSwitchPreference
|
|
android:key="click_partial_screenshot"
|
|
android:title="@string/click_partial_screenshot_title"
|
|
android:summary="@string/click_partial_screenshot_summary"
|
|
android:defaultValue="false" />
|
|
</PreferenceScreen>
|