Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5bd0bf43 authored by Andreas Blaesius's avatar Andreas Blaesius Committed by Michael Bestas
Browse files

Settings: remove cyngn logger from PrivacySettings

Change-Id: Ie632fe7a9e4f904454bca4030ad73ee7f4b2b1c8
parent 87c241f3
Loading
Loading
Loading
Loading
+0 −4
Original line number Original line Diff line number Diff line
@@ -1007,10 +1007,6 @@ two in order to insert additional control points. \'Remove\' deletes the selecte
    <string name="whisperpush_title">WhisperPush</string>
    <string name="whisperpush_title">WhisperPush</string>
    <string name="whisperpush_summary">Manage secure SMS settings</string>
    <string name="whisperpush_summary">Manage secure SMS settings</string>


    <!-- Logger -->
    <string name="logger_title">Anonymous crash logging</string>
    <string name="logger_summary">Manage crash logging settings</string>

    <!-- Message of dialog confirming that user wants to restart their device with a new runtime -->
    <!-- Message of dialog confirming that user wants to restart their device with a new runtime -->
    <string name="custom_runtime_warning_title">Warning</string>
    <string name="custom_runtime_warning_title">Warning</string>
    <string name="custom_runtime_warning_message">ART is not officially supported by LineageOS as it is highly experimental and has the potential to cause instability, crashes, data loss or prevent the proper boot of your device. Visit &lt;a href=\"http://source.android.com/devices/tech/dalvik/art.html\"&gt;Introducing ART&lt;/a&gt; for more information.&lt;br/&gt;&lt;br/&gt;We request you do not file bug reports if you have enabled ART as your runtime.&lt;br/&gt;&lt;br/&gt;Are you sure you want to reboot to change runtime from <xliff:g id="old" example="libdvm.so">%1$s</xliff:g> to <xliff:g id="new" example="libart.so">%2$s</xliff:g>?</string>
    <string name="custom_runtime_warning_message">ART is not officially supported by LineageOS as it is highly experimental and has the potential to cause instability, crashes, data loss or prevent the proper boot of your device. Visit &lt;a href=\"http://source.android.com/devices/tech/dalvik/art.html\"&gt;Introducing ART&lt;/a&gt; for more information.&lt;br/&gt;&lt;br/&gt;We request you do not file bug reports if you have enabled ART as your runtime.&lt;br/&gt;&lt;br/&gt;Are you sure you want to reboot to change runtime from <xliff:g id="old" example="libdvm.so">%1$s</xliff:g> to <xliff:g id="new" example="libart.so">%2$s</xliff:g>?</string>
+0 −28
Original line number Original line Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2013 The CyanogenMod 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">

    <Preference
        android:key="logger"
        android:title="@string/logger_title"
        android:summary="@string/logger_summary">
        <intent android:targetPackage="com.cyngn.logger"
            android:targetClass="com.cyngn.logger.ui.LoggerPreferenceActivity" />
    </Preference>

</PreferenceScreen>
+0 −5
Original line number Original line Diff line number Diff line
@@ -55,11 +55,6 @@ public class PrivacySettings extends SettingsPreferenceFragment {
        }
        }


        addPreferencesFromResource(R.xml.security_settings_cyanogenmod);
        addPreferencesFromResource(R.xml.security_settings_cyanogenmod);
        // Logger
        // Only add if device has Logger installed
        if (Utils.isPackageInstalled(getActivity(), "com.cyngn.logger")) {
            addPreferencesFromResource(R.xml.security_settings_logger);
        }
    }
    }


    @Override
    @Override