This has been fixed in the kernel.
Also remove its sepolicy.
This reverts commit 96d068a98d
.
Change-Id: Ic54d8a76ac66a090966de60e4ed904be578d5655
fourteen-wip
parent
2a88cfa9ac
commit
5005f437cf
@ -1,2 +0,0 @@ |
||||
# Fingerprint |
||||
system_public_prop(vendor_fingerprint_prop) |
@ -1,20 +0,0 @@ |
||||
LOCAL_PATH:= $(call my-dir)
|
||||
include $(CLEAR_VARS) |
||||
|
||||
LOCAL_MODULE_TAGS := optional
|
||||
|
||||
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
||||
|
||||
LOCAL_PACKAGE_NAME := SamsungUdfpsHandler.sm7125
|
||||
LOCAL_CERTIFICATE := platform
|
||||
LOCAL_PRIVATE_PLATFORM_APIS := true
|
||||
LOCAL_PRIVILEGED_MODULE := true
|
||||
|
||||
LOCAL_USE_AAPT2 := true
|
||||
|
||||
ifneq ($(INCREMENTAL_BUILDS),) |
||||
LOCAL_PROGUARD_ENABLED := disabled
|
||||
LOCAL_JACK_ENABLED := incremental
|
||||
endif |
||||
|
||||
include $(BUILD_PACKAGE) |
@ -1,28 +0,0 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||||
package="android.hardware.display" |
||||
android:versionCode="1" |
||||
android:versionName="1.0" |
||||
android:sharedUserId="android.uid.system"> |
||||
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> |
||||
|
||||
<uses-sdk |
||||
android:targetSdkVersion="28"/> |
||||
|
||||
<application |
||||
android:label="SamsungUdfpsHandler" |
||||
android:persistent="true"> |
||||
|
||||
<receiver android:name=".BootCompletedReceiver"> |
||||
<intent-filter> |
||||
<action android:name="android.intent.action.BOOT_COMPLETED" /> |
||||
<category android:name="android.intent.category.DEFAULT" /> |
||||
</intent-filter> |
||||
</receiver> |
||||
|
||||
<service android:name=".SamsungUdfpsHandlerService" |
||||
android:permission="SamsungUdfpsHandlerService"> |
||||
</service> |
||||
</application> |
||||
</manifest> |
@ -1,34 +0,0 @@ |
||||
/* |
||||
* Copyright (c) 2022 The LineageOS 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. |
||||
*/ |
||||
|
||||
package android.hardware.display; |
||||
|
||||
import android.content.BroadcastReceiver; |
||||
import android.content.Context; |
||||
import android.content.Intent; |
||||
import android.util.Log; |
||||
|
||||
public class BootCompletedReceiver extends BroadcastReceiver { |
||||
|
||||
private static final boolean DEBUG = false; |
||||
private static final String TAG = "SamsungUdfpsHandler"; |
||||
|
||||
@Override |
||||
public void onReceive(final Context context, Intent intent) { |
||||
if (DEBUG) Log.d(TAG, "Received boot completed intent"); |
||||
Utils.startService(context); |
||||
} |
||||
} |
@ -1,107 +0,0 @@ |
||||
/* |
||||
* Copyright (c) 2022 The LineageOS 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. |
||||
*/ |
||||
|
||||
package android.hardware.display; |
||||
|
||||
import android.app.Service; |
||||
import android.content.Intent; |
||||
import android.hardware.display.ColorDisplayManager; |
||||
import android.os.SystemProperties; |
||||
import android.os.IBinder; |
||||
import android.util.Log; |
||||
import android.os.Handler; |
||||
|
||||
public class SamsungUdfpsHandlerService extends Service { |
||||
private static final String TAG = "SamsungUdfpsHandler"; |
||||
private static final boolean DEBUG = false; |
||||
|
||||
private int mNightDisplayTemp = 0; |
||||
private boolean mExtraDimActive = false; |
||||
|
||||
private ColorDisplayManager mColorDisplayManager; |
||||
private Handler mHandler; |
||||
private static Runnable mRunnable; |
||||
|
||||
private void disable() { |
||||
if (DEBUG) Log.d(TAG, "Finger down, set NightDisplay and ExtraDim off"); |
||||
|
||||
mNightDisplayTemp = mColorDisplayManager.getNightDisplayColorTemperature(); |
||||
|
||||
if (mColorDisplayManager.isNightDisplayActivated()) { |
||||
// 6500 Kelvin is AOSP's default white balance value
|
||||
mColorDisplayManager.setNightDisplayColorTemperature(6500); |
||||
} |
||||
|
||||
if (mColorDisplayManager.isReduceBrightColorsActivated()) { |
||||
mExtraDimActive = true; |
||||
mColorDisplayManager.setReduceBrightColorsActivated(false); |
||||
} |
||||
|
||||
SystemProperties.set("vendor.finger.down", "0"); |
||||
} |
||||
|
||||
private void enable() { |
||||
if (DEBUG) Log.d(TAG, "Finger up, reset NightDisplay and ExtraDim to previous state"); |
||||
|
||||
SystemProperties.set("vendor.finger.down", "-1"); |
||||
|
||||
mColorDisplayManager.setNightDisplayColorTemperature(mNightDisplayTemp); |
||||
mColorDisplayManager.setReduceBrightColorsActivated(mExtraDimActive); |
||||
|
||||
mExtraDimActive = false; |
||||
} |
||||
|
||||
@Override |
||||
public void onCreate() { |
||||
if (DEBUG) Log.d(TAG, "SamsungUdfpsHandler Started"); |
||||
mColorDisplayManager = getSystemService(ColorDisplayManager.class); |
||||
|
||||
SystemProperties.set("vendor.finger.down", "-1"); |
||||
|
||||
mHandler = new Handler(); |
||||
mRunnable = new Runnable() { |
||||
public void run() { |
||||
if (DEBUG) Log.d(TAG, "onCreate: " + TAG + " is running"); |
||||
|
||||
if (SystemProperties.get("vendor.finger.down").equals("1")) { |
||||
disable(); |
||||
try { |
||||
Thread.sleep(2000); |
||||
} |
||||
catch (InterruptedException e) { |
||||
e.printStackTrace(); |
||||
} |
||||
} else if (SystemProperties.get("vendor.finger.down").equals("0")) { |
||||
enable(); |
||||
} |
||||
mHandler.postDelayed(mRunnable, 100); |
||||
} |
||||
}; |
||||
|
||||
mHandler.postDelayed(mRunnable, 0); |
||||
} |
||||
|
||||
@Override |
||||
public int onStartCommand(Intent intent, int flags, int startId) { |
||||
if (DEBUG) Log.d(TAG, "Starting service"); |
||||
return START_STICKY; |
||||
} |
||||
|
||||
@Override |
||||
public IBinder onBind(Intent intent) { |
||||
return null; |
||||
} |
||||
} |
@ -1,40 +0,0 @@ |
||||
/* |
||||
* Copyright (C) 2022 The LineageOS 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. |
||||
*/ |
||||
|
||||
package android.hardware.display; |
||||
|
||||
import android.content.Context; |
||||
import android.content.Intent; |
||||
import android.os.UserHandle; |
||||
import android.util.Log; |
||||
|
||||
public final class Utils { |
||||
|
||||
private static final String TAG = "UDFPSUtils"; |
||||
private static final boolean DEBUG = false; |
||||
|
||||
protected static void startService(Context context) { |
||||
if (DEBUG) Log.d(TAG, "Starting service"); |
||||
context.startServiceAsUser(new Intent(context, SamsungUdfpsHandlerService.class), |
||||
UserHandle.CURRENT); |
||||
} |
||||
|
||||
protected static void stopService(Context context) { |
||||
if (DEBUG) Log.d(TAG, "Stopping service"); |
||||
context.stopServiceAsUser(new Intent(context, SamsungUdfpsHandlerService.class), |
||||
UserHandle.CURRENT); |
||||
} |
||||
} |
Loading…
Reference in new issue