samsung: doze: Rebrand from cyanogenmod to lineageos

Change-Id: I619080f46a69a80fe3923cb3df6a676242f36eac
tirimbino
Arne Coucheron 7 years ago committed by Jan Altensen
parent 129f7cba1a
commit 2f5533648a
No known key found for this signature in database
GPG Key ID: 3E45BB95F7AD33DA
  1. 2
      doze/Android.mk
  2. 8
      doze/AndroidManifest.xml
  3. 2
      doze/proguard.flags
  4. 2
      doze/res/xml/gesture_panel.xml
  5. 2
      doze/src/org/lineageos/settings/device/BootCompletedReceiver.java
  6. 2
      doze/src/org/lineageos/settings/device/SamsungDozeActivity.java
  7. 2
      doze/src/org/lineageos/settings/device/SamsungDozeService.java
  8. 4
      doze/src/org/lineageos/settings/device/TouchscreenGestureSettings.java

@ -14,7 +14,7 @@ LOCAL_STATIC_JAVA_LIBRARIES := \
android-support-v7-appcompat \ android-support-v7-appcompat \
android-support-v7-preference \ android-support-v7-preference \
android-support-v7-recyclerview \ android-support-v7-recyclerview \
org.cyanogenmod.platform.internal org.lineageos.platform.internal
LOCAL_PROGUARD_FLAG_FILES := proguard.flags LOCAL_PROGUARD_FLAG_FILES := proguard.flags

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cyanogenmod.settings.device" package="org.lineageos.settings.device"
android:versionCode="1" android:versionCode="1"
android:versionName="1.0" android:versionName="1.0"
android:sharedUserId="android.uid.system"> android:sharedUserId="android.uid.system">
@ -20,14 +20,14 @@
android:label="@string/device_settings_app_name" android:label="@string/device_settings_app_name"
android:persistent="true"> android:persistent="true">
<receiver android:name="com.cyanogenmod.settings.device.BootCompletedReceiver"> <receiver android:name="org.lineageos.settings.device.BootCompletedReceiver">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" /> <action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<service android:name="com.cyanogenmod.settings.device.SamsungDozeService" <service android:name="org.lingeageos.settings.device.SamsungDozeService"
android:permission="SamsungDozeService"> android:permission="SamsungDozeService">
</service> </service>
@ -36,7 +36,7 @@
android:label="@string/ambient_display_title" android:label="@string/ambient_display_title"
android:theme="@style/SamsungDozeSettings"> android:theme="@style/SamsungDozeSettings">
<intent-filter> <intent-filter>
<action android:name="org.cyanogenmod.settings.device.DOZE_SETTINGS" /> <action android:name="org.lineageos.settings.device.DOZE_SETTINGS" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</activity> </activity>

@ -1,4 +1,4 @@
-keep class com.cyanogenmod.settings.device.* { -keep class org.lineageos.settings.device.* {
*; *;
} }

@ -20,7 +20,7 @@
android:key="ambient_display_key" android:key="ambient_display_key"
android:title="@string/ambient_display_title"> android:title="@string/ambient_display_title">
<cyanogenmod.preference.SecureSettingSwitchPreference <lineageos.preference.SecureSettingSwitchPreference
android:key="doze_enabled" android:key="doze_enabled"
android:defaultValue="true" android:defaultValue="true"
android:title="@string/ambient_display_enable_title" android:title="@string/ambient_display_enable_title"

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.cyanogenmod.settings.device; package org.lineageos.settings.device;
import android.content.BroadcastReceiver; import android.content.BroadcastReceiver;
import android.content.Context; import android.content.Context;

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package com.cyanogenmod.settings.device; package org.lineageos.settings.device;
import android.app.Fragment; import android.app.Fragment;
import android.app.FragmentTransaction; import android.app.FragmentTransaction;

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.cyanogenmod.settings.device; package org.lineageos.settings.device;
import android.app.Service; import android.app.Service;
import android.content.BroadcastReceiver; import android.content.BroadcastReceiver;

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.cyanogenmod.settings.device; package org.lineageos.settings.device;
import android.os.Bundle; import android.os.Bundle;
import android.support.v14.preference.PreferenceFragment; import android.support.v14.preference.PreferenceFragment;
@ -22,7 +22,7 @@ import android.support.v14.preference.SwitchPreference;
import android.support.v7.preference.Preference; import android.support.v7.preference.Preference;
import android.provider.Settings; import android.provider.Settings;
import org.cyanogenmod.internal.util.ScreenType; import org.lineageos.internal.util.ScreenType;
public class TouchscreenGestureSettings extends PreferenceFragment { public class TouchscreenGestureSettings extends PreferenceFragment {
Loading…
Cancel
Save