├── lineage.dependencies ├── keylayout └── sec_touchkey.kl ├── validityservice ├── proguard.flags ├── res │ ├── drawable │ │ └── icon.png │ └── values │ │ └── strings.xml ├── src │ └── com │ │ └── validity │ │ └── fingerprint │ │ ├── VcsInt.java │ │ ├── VcsByteArray.java │ │ ├── VcsStringArray.java │ │ ├── RemoveEnroll.java │ │ ├── FingerprintEvent.java │ │ ├── SensorInfo.java │ │ ├── FingerprintBitmap.java │ │ ├── EnrollUser.java │ │ ├── VcsAddInfo.java │ │ ├── ConsumerInfo.java │ │ ├── EnrollCaptureStatus.java │ │ ├── IdentifyResult.java │ │ ├── ValidityServiceStarter.java │ │ └── VLog.java ├── Android.mk └── AndroidManifest.xml ├── wifi └── wpa_supplicant.conf ├── rootdir ├── sbin │ └── cbd ├── Android.mk └── etc │ ├── fstab.universal3470 │ └── init.wifi.rc ├── vendorsetup.sh ├── apps ├── ExtendedSettings │ ├── res │ │ ├── drawable │ │ │ └── setting_bg.png │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher_settings.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher_settings.png │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-v21 │ │ │ └── styles.xml │ │ ├── values-ru │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── layout │ │ │ ├── top.xml │ │ │ └── gsensor.xml │ │ ├── values-ro │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── values-sr │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── xml │ │ │ ├── performance_preferences.xml │ │ │ ├── touchkey_preferences.xml │ │ │ ├── general_preferences.xml │ │ │ └── bln_preferences.xml │ │ ├── values │ │ │ ├── styles.xml │ │ │ └── arrays.xml │ │ ├── values-pt │ │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── values-pl │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── values-it │ │ │ └── arrays.xml │ │ ├── values-es │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── values-hu │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── values-nl │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ ├── values-el │ │ │ ├── arrays.xml │ │ │ └── strings.xml │ │ └── values-de │ │ │ └── arrays.xml │ ├── src │ │ └── com │ │ │ └── cyanogenmod │ │ │ └── settings │ │ │ └── device │ │ │ ├── Startup.java │ │ │ ├── OTGCharge.java │ │ │ ├── PerformanceFragmentActivity.java │ │ │ ├── FastCharge.java │ │ │ ├── A2dpSink.java │ │ │ └── GeneralFragmentActivity.java │ └── Android.mk └── Android.mk ├── lineage.mk ├── sepolicy ├── device.te ├── file.te └── file_contexts ├── init ├── Android.mk └── init_kminilte.cpp ├── recovery └── root │ └── etc │ └── twrp.fstab ├── libsensors ├── sensors_local.h ├── LightSensor.h ├── ProximitySensor.h ├── HeartRateSensor.h ├── SamsungSensorBase.h ├── ProximitySensor.cpp ├── LightSensor.cpp └── CompassSensor.HSCDTD008A.h ├── system.prop ├── Android.mk ├── overlay ├── packages │ ├── apps │ │ ├── Bluetooth │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ ├── Dialer │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ ├── Settings │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ └── bools.xml │ │ ├── SamsungServiceMode │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ ├── FlipFlap │ │ │ └── res │ │ │ │ └── values │ │ │ │ ├── config.xml │ │ │ │ └── dimens.xml │ │ └── Snap │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ └── services │ │ └── Telephony │ │ └── res │ │ └── values │ │ └── config.xml ├── frameworks │ └── base │ │ ├── packages │ │ ├── SystemUI │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── config.xml │ │ └── Keyguard │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── core │ │ └── res │ │ └── res │ │ ├── values │ │ └── cm_arrays.xml │ │ └── xml │ │ └── power_profile.xml └── lineage-sdk │ └── lineage │ └── res │ └── res │ └── values │ └── config.xml ├── bluetooth └── bdroid_buildcfg.h ├── fingerprint ├── Android.mk └── fp_klte.h ├── power ├── Android.mk └── power.c ├── consumerir └── Android.mk ├── liblights └── Android.mk ├── full_kminilte.mk ├── extract-files.sh ├── lineagehw └── org │ └── lineageos │ └── hardware │ ├── KeyDisabler.java │ ├── AdaptiveBacklight.java │ ├── TouchscreenHovering.java │ └── HighTouchSensitivity.java ├── setup-makefiles.sh ├── BoardConfig.mk ├── nfc ├── libnfc-sec-hal.conf └── nfcee_access.xml └── audio └── audio_policy.conf /lineage.dependencies: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /keylayout/sec_touchkey.kl: -------------------------------------------------------------------------------- 1 | key 254 APP_SWITCH VIRTUAL 2 | key 158 BACK VIRTUAL 3 | -------------------------------------------------------------------------------- /validityservice/proguard.flags: -------------------------------------------------------------------------------- 1 | -verbose 2 | -keep class com.validity.fingerprint.* {*;} 3 | -------------------------------------------------------------------------------- /wifi/wpa_supplicant.conf: -------------------------------------------------------------------------------- 1 | update_config=1 2 | eapol_version=1 3 | ap_scan=1 4 | fast_reauth=1 5 | -------------------------------------------------------------------------------- /rootdir/sbin/cbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cm-3470/android_device_samsung_kminilte/HEAD/rootdir/sbin/cbd -------------------------------------------------------------------------------- /vendorsetup.sh: -------------------------------------------------------------------------------- 1 | add_lunch_combo lineage_kminilte-eng 2 | add_lunch_combo lineage_kminilte-user 3 | add_lunch_combo lineage_kminilte-userdebug 4 | -------------------------------------------------------------------------------- /validityservice/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cm-3470/android_device_samsung_kminilte/HEAD/validityservice/res/drawable/icon.png -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/drawable/setting_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cm-3470/android_device_samsung_kminilte/HEAD/apps/ExtendedSettings/res/drawable/setting_bg.png -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/mipmap-hdpi/ic_launcher_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cm-3470/android_device_samsung_kminilte/HEAD/apps/ExtendedSettings/res/mipmap-hdpi/ic_launcher_settings.png -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/mipmap-xhdpi/ic_launcher_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cm-3470/android_device_samsung_kminilte/HEAD/apps/ExtendedSettings/res/mipmap-xhdpi/ic_launcher_settings.png -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /lineage.mk: -------------------------------------------------------------------------------- 1 | # Inherit some common Lineage stuff. 2 | $(call inherit-product, vendor/lineage/config/common_full_phone.mk) 3 | $(call inherit-product, device/samsung/kminilte/full_kminilte.mk) 4 | 5 | PRODUCT_NAME := lineage_kminilte 6 | -------------------------------------------------------------------------------- /sepolicy/device.te: -------------------------------------------------------------------------------- 1 | # /dev/s5p-smem 2 | type secmem_device, dev_type; 3 | 4 | # Unified Memory Management device 5 | type ump_device, dev_type; 6 | 7 | # /dev/umts_boot*, /dev/ehci_power 8 | type mif_device, dev_type; 9 | 10 | -------------------------------------------------------------------------------- /init/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | 3 | include $(CLEAR_VARS) 4 | 5 | LOCAL_MODULE_TAGS := optional 6 | LOCAL_C_INCLUDES := system/core/init 7 | LOCAL_CFLAGS := -Wall -DANDROID_TARGET=\"$(TARGET_BOARD_PLATFORM)\" 8 | LOCAL_STATIC_LIBRARIES := libbase liblog 9 | LOCAL_SRC_FILES := init_kminilte.cpp 10 | LOCAL_MODULE := libinit_kminilte 11 | 12 | include $(BUILD_STATIC_LIBRARY) 13 | -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/values-ru/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | По умолчанию (1.6 секунд) 5 | 0.5 секунд 6 | 1 секунд 7 | 2 секунд 8 | 5 секунд 9 | Никогда 10 | 11 | 12 | -------------------------------------------------------------------------------- /recovery/root/etc/twrp.fstab: -------------------------------------------------------------------------------- 1 | # mount point fstype device device2 2 | /efs ext4 /dev/block/mmcblk0p3 flags=display="EFS";backup=1 3 | /boot emmc /dev/block/mmcblk0p9 4 | /misc emmc /dev/block/mmcblk0p11 5 | /recovery emmc /dev/block/mmcblk0p10 6 | /cache auto /dev/block/mmcblk0p19 7 | /system ext4 /dev/block/mmcblk0p18 8 | /data auto /dev/block/mmcblk0p21 length=-16384 9 | /modem emmc /dev/block/mmcblk0p13 10 | /preload ext4 /dev/block/mmcblk0p20 11 | 12 | /external_sd auto /dev/block/mmcblk1p1 flags=display="Micro SDcard";storage;wipeingui;removable 13 | -------------------------------------------------------------------------------- /libsensors/sensors_local.h: -------------------------------------------------------------------------------- 1 | #ifndef SENSORS_LOCAL_H 2 | #define SENSORS_LOCAL_H 3 | 4 | #include "sensors.h" 5 | 6 | /* additional IDs */ 7 | enum { 8 | ID_L = 0x100, 9 | ID_PX, 10 | ID_HR 11 | }; 12 | 13 | // EVENT_TYPE_MAGV_n already defined in sensors.h 14 | // -> Use EVENT_TYPE_REL_MAGV_n instead. 15 | #define EVENT_TYPE_REL_MAGV_X REL_X 16 | #define EVENT_TYPE_REL_MAGV_Y REL_Y 17 | #define EVENT_TYPE_REL_MAGV_Z REL_Z 18 | #define EVENT_TYPE_MAG_TIME_HI REL_DIAL 19 | #define EVENT_TYPE_MAG_TIME_LO REL_MISC 20 | 21 | #endif // SENSORS_LOCAL_H 22 | -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- 1 | # 2 | # system.prop for kminilte 3 | # 4 | 5 | ro.sf.lcd_density=320 6 | persist.hdmi.hdcp_enabled=0 7 | persist.demo.hdmirotationlock=0 8 | rild.libpath=/system/lib/libsec-ril.so 9 | rild.libargs=-d /dev/umts_ipc0 10 | 11 | ro.ril.hsxpa=1 12 | ro.ril.gprsclass=10 13 | ro.ril.telephony.mqanelements=6 14 | ro.telephony.default_network=9 15 | telephony.lteOnCdmaDevice=0 16 | persist.radio.apm_sim_not_pwdn=1 17 | persist.radio.add_power_save=1 18 | 19 | # Uncomment the following line to enable Bluetooth A2DP sink 20 | #persist.service.bt.a2dp.sink=true 21 | 22 | ro.nfc.sec_hal=true 23 | 24 | # this affects lock screen ColorFader and ensures release of /dev/pvrsrvkm GPU ressources 25 | ro.egl.destroy_after_detach=true 26 | 27 | -------------------------------------------------------------------------------- /apps/Android.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2017 The LineageOS Project 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | LOCAL_PATH := $(call my-dir) 18 | include $(call all-makefiles-under,$(LOCAL_PATH)) 19 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2017 The LineageOS Project 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | # 16 | 17 | LOCAL_PATH := $(call my-dir) 18 | 19 | ifeq ($(TARGET_DEVICE),kminilte) 20 | include $(call all-makefiles-under,$(LOCAL_PATH)) 21 | endif 22 | -------------------------------------------------------------------------------- /overlay/packages/apps/Bluetooth/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sepolicy/file.te: -------------------------------------------------------------------------------- 1 | ### efs types 2 | type app_efs_file, file_type; 3 | type battery_efs_type, file_type; 4 | type baro_delta_factoryapp_efs_file, file_type; 5 | type bin_nv_data_efs_file, file_type; 6 | type cbd_log_data, file_type; 7 | # widewine, drm 8 | type cpk_efs_file, file_type; 9 | type drm_efs_file, file_type; 10 | type factorymode_factoryapp_efs_file, file_type; 11 | type imei_efs_file, file_type; 12 | type prov_efs_file, file_type; 13 | type radio_factoryapp_efs_file, file_type; 14 | type sensor_efs_file, file_type; 15 | type wifi_efs_file, file_type; 16 | 17 | ### sysfs types 18 | type sysfs_multipdp_writable, fs_type, sysfs_type, mlstrustedobject; 19 | type sysfs_usb_power_writable, fs_type, sysfs_type, mlstrustedobject; 20 | type sysfs_otg_writable, fs_type, sysfs_type; 21 | type sysfs_graphics, fs_type, sysfs_type, mlstrustedobject; 22 | 23 | allow sysfs_type tmpfs:filesystem associate; 24 | -------------------------------------------------------------------------------- /bluetooth/bdroid_buildcfg.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2014 The CyanogenMod Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #ifndef _BDROID_BUILDCFG_H 18 | #define _BDROID_BUILDCFG_H 19 | 20 | // Commented out for variant support 21 | // when null the product model is used 22 | // #define BTM_DEF_LOCAL_NAME "SM-G800F" 23 | 24 | #endif 25 | -------------------------------------------------------------------------------- /overlay/packages/apps/Dialer/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | true 19 | 4 20 | 21 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/VcsInt.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class VcsInt { 22 | public int num; 23 | } 24 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/VcsByteArray.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class VcsByteArray { 22 | public byte data[]; 23 | } 24 | -------------------------------------------------------------------------------- /validityservice/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 19 | Validity service 20 | 21 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/VcsStringArray.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class VcsStringArray { 22 | public String strlist[]; 23 | } 24 | -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/layout/top.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 20 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/RemoveEnroll.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class RemoveEnroll { 22 | public int fingerIndex; 23 | public String userId; 24 | } 25 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/FingerprintEvent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class FingerprintEvent { 22 | public Object eventData; 23 | public int eventId; 24 | } 25 | -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 5dp 20 | 94.68% 21 | 22 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/SensorInfo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class SensorInfo { 22 | public int flexId; 23 | public String fwVersion; 24 | public int productId; 25 | } 26 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/FingerprintBitmap.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | import android.graphics.Bitmap; 22 | 23 | public class FingerprintBitmap { 24 | public Bitmap fingerprint; 25 | public int quality; 26 | } 27 | -------------------------------------------------------------------------------- /fingerprint/Android.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2016 The CyanogenMod Project 3 | # Copyright (C) 2016 The Mokee Project 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | 18 | LOCAL_PATH := $(call my-dir) 19 | 20 | include $(CLEAR_VARS) 21 | 22 | LOCAL_MODULE := fingerprint.universal3470 23 | LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw 24 | LOCAL_SRC_FILES := fingerprint.c 25 | LOCAL_SHARED_LIBRARIES := liblog 26 | LOCAL_MODULE_TAGS := optional 27 | 28 | include $(BUILD_SHARED_LIBRARY) 29 | -------------------------------------------------------------------------------- /overlay/packages/apps/SamsungServiceMode/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 20 | 2 21 | 22 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/EnrollUser.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class EnrollUser { 22 | public int fingerIndex; 23 | public int mode; 24 | public String userId; 25 | 26 | public EnrollUser() { 27 | mode = 1; 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/values-ro/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | Implicit(1.6 secunde) 19 | 0.5 secunde 20 | 1 secunde 21 | 2 secunde 22 | 5 secunde 23 | Niciodata 24 | 25 | 26 | -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/values-sr/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | Стандардно (1.6 секунди) 19 | 0.5 секунди 20 | 1 секунда 21 | 2 секунде 22 | 5 секунди 23 | Никад 24 | 25 | 26 | -------------------------------------------------------------------------------- /power/Android.mk: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2014, The CyanogenMod Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | LOCAL_PATH := $(call my-dir) 16 | 17 | ifeq ($(TARGET_POWERHAL_VARIANT),exynos3) 18 | 19 | include $(CLEAR_VARS) 20 | 21 | LOCAL_MODULE := power.exynos3 22 | LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw 23 | LOCAL_SRC_FILES := power.c 24 | LOCAL_SHARED_LIBRARIES := liblog 25 | LOCAL_MODULE_TAGS := optional 26 | 27 | include $(BUILD_SHARED_LIBRARY) 28 | 29 | endif # TARGET_POWERHAL_VARIANT == exynos3 30 | -------------------------------------------------------------------------------- /consumerir/Android.mk: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2013 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # HAL module implementation stored in 16 | # hw/..so 17 | 18 | LOCAL_PATH := $(call my-dir) 19 | 20 | include $(CLEAR_VARS) 21 | 22 | LOCAL_MODULE := consumerir.universal3470 23 | LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw 24 | LOCAL_SRC_FILES := consumerir.c 25 | LOCAL_SHARED_LIBRARIES := liblog libcutils 26 | LOCAL_MODULE_TAGS := optional 27 | 28 | include $(BUILD_SHARED_LIBRARY) 29 | -------------------------------------------------------------------------------- /liblights/Android.mk: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2012 The CyanogenMod Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | LOCAL_PATH:= $(call my-dir) 16 | # HAL module implemenation stored in 17 | # hw/..so 18 | include $(CLEAR_VARS) 19 | 20 | LOCAL_SRC_FILES := lights.c 21 | 22 | 23 | LOCAL_SHARED_LIBRARIES := liblog 24 | 25 | LOCAL_MODULE := lights.exynos3 26 | LOCAL_MODULE_RELATIVE_PATH := hw 27 | LOCAL_PROPRIETARY_MODULE := true 28 | 29 | LOCAL_MODULE_TAGS := optional 30 | 31 | include $(BUILD_SHARED_LIBRARY) 32 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/VcsAddInfo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class VcsAddInfo { 22 | public int algID; 23 | public byte data[]; 24 | 25 | public VcsAddInfo() { 26 | } 27 | 28 | public VcsAddInfo(int algorithmID) { 29 | algID = algorithmID; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/ConsumerInfo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | 22 | public class ConsumerInfo { 23 | public Object info; 24 | public int type; 25 | 26 | public ConsumerInfo() { 27 | } 28 | 29 | public ConsumerInfo(int type) { 30 | this.type = type; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /full_kminilte.mk: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2017 The LineageOS Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Inherit from those products. Most specific first. 16 | $(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk) 17 | # Inherit from kminilte device 18 | $(call inherit-product, device/samsung/kminilte/device.mk) 19 | 20 | # Set those variables here to overwrite the inherited values. 21 | PRODUCT_NAME := full_kminilte 22 | PRODUCT_DEVICE := kminilte 23 | PRODUCT_BRAND := samsung 24 | PRODUCT_MANUFACTURER := samsung 25 | PRODUCT_MODEL := SM-G800 26 | -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/SystemUI/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 22 | 23 | 24 | 26 | true 27 | 28 | 29 | -------------------------------------------------------------------------------- /validityservice/Android.mk: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2016 The Android Open Source Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | LOCAL_PATH:= $(call my-dir) 16 | 17 | include $(CLEAR_VARS) 18 | 19 | LOCAL_PACKAGE_NAME := ValidityService 20 | 21 | LOCAL_SRC_FILES := $(call all-java-files-under, src) 22 | 23 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res 24 | LOCAL_AAPT_FLAGS := --auto-add-overlay 25 | 26 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags 27 | 28 | LOCAL_CERTIFICATE := platform 29 | LOCAL_PRIVILEGED_MODULE := true 30 | 31 | #LOCAL_JACK_ENABLED := disabled 32 | 33 | include $(BUILD_PACKAGE) 34 | -------------------------------------------------------------------------------- /apps/ExtendedSettings/src/com/cyanogenmod/settings/device/Startup.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2013 The CyanogenMod Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.cyanogenmod.settings.device; 18 | 19 | import android.content.BroadcastReceiver; 20 | import android.content.Context; 21 | import android.content.Intent; 22 | 23 | public class Startup extends BroadcastReceiver { 24 | 25 | @Override 26 | public void onReceive(final Context context, final Intent bootintent) { 27 | GeneralFragmentActivity.restore(context); 28 | PerformanceFragmentActivity.restore(context); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/EnrollCaptureStatus.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class EnrollCaptureStatus { 22 | 23 | public int badSwipes; 24 | public int cumulativeCoverageMap; 25 | public int currentCoverageMap; 26 | public int imageQuality; 27 | public int positionFeedback; 28 | public int progress; 29 | public int templateResult; 30 | public int totalSwipes; 31 | 32 | } 33 | -------------------------------------------------------------------------------- /apps/ExtendedSettings/Android.mk: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2011-2013 The CyanogenMod Project 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | LOCAL_PATH:= $(call my-dir) 16 | include $(CLEAR_VARS) 17 | 18 | LOCAL_MODULE_TAGS := optional 19 | 20 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-v13 21 | 22 | LOCAL_SRC_FILES := $(call all-java-files-under, src) 23 | 24 | LOCAL_PACKAGE_NAME := AriesParts 25 | LOCAL_CERTIFICATE := platform 26 | LOCAL_PRIVILEGED_MODULE := true 27 | 28 | # Required so that symbols used by the jni library doesn't get stripped out 29 | LOCAL_PROGUARD_ENABLED := disabled 30 | 31 | include $(BUILD_PACKAGE) 32 | 33 | include $(call all-makefiles-under,$(LOCAL_PATH)) 34 | -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/xml/performance_preferences.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /overlay/frameworks/base/packages/Keyguard/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 23 | 27 | false 28 | 29 | -------------------------------------------------------------------------------- /overlay/packages/apps/FlipFlap/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 29 | 3 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /overlay/packages/apps/FlipFlap/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | 24 | 0px 25 | 40px 26 | 640px 27 | 640px 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/IdentifyResult.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | public class IdentifyResult { 22 | public byte templateId[] = new byte[16]; 23 | public int matchedFingerIndexes[] = new int[20]; 24 | public int corrMinuCount[] = new int[4]; 25 | public int vMinuCount[] = new int[4]; 26 | public String appData; 27 | public int fMinuCount; 28 | public int fingerIndex; 29 | public float matchRate; 30 | public int matchScore; 31 | public int templateUpdated; 32 | public String userId; 33 | } 34 | -------------------------------------------------------------------------------- /validityservice/src/com/validity/fingerprint/ValidityServiceStarter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2016 The Android Open Source Project 3 | * Copyright (C) 2016 The Mokee Project 4 | * Copyright (C) 2016 The CyanogenMod Project 5 | * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); 7 | * you may not use this file except in compliance with the License. 8 | * You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, software 13 | * distributed under the License is distributed on an "AS IS" BASIS, 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | * See the License for the specific language governing permissions and 16 | * limitations under the License. 17 | */ 18 | 19 | package com.validity.fingerprint; 20 | 21 | import android.app.Application; 22 | import android.content.Context; 23 | import android.content.Intent; 24 | import android.util.Log; 25 | 26 | public class ValidityServiceStarter extends Application { 27 | 28 | @Override 29 | public void onCreate() { 30 | super.onCreate(); 31 | VLog.v("onCreate"); 32 | Intent serviceintent = new Intent(this, ValidityService.class); 33 | startService(serviceintent); 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /rootdir/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | 3 | include $(CLEAR_VARS) 4 | LOCAL_MODULE := fstab.universal3470 5 | LOCAL_MODULE_TAGS := optional eng 6 | LOCAL_MODULE_CLASS := ETC 7 | LOCAL_SRC_FILES := etc/fstab.universal3470 8 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) 9 | include $(BUILD_PREBUILT) 10 | 11 | include $(CLEAR_VARS) 12 | LOCAL_MODULE := init.universal3470.rc 13 | LOCAL_MODULE_TAGS := optional eng 14 | LOCAL_MODULE_CLASS := ETC 15 | LOCAL_SRC_FILES := etc/init.universal3470.rc 16 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) 17 | include $(BUILD_PREBUILT) 18 | 19 | include $(CLEAR_VARS) 20 | LOCAL_MODULE := init.universal3470.usb.rc 21 | LOCAL_MODULE_TAGS := optional eng 22 | LOCAL_MODULE_CLASS := ETC 23 | LOCAL_SRC_FILES := etc/init.universal3470.usb.rc 24 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) 25 | include $(BUILD_PREBUILT) 26 | 27 | include $(CLEAR_VARS) 28 | LOCAL_MODULE := init.wifi.rc 29 | LOCAL_MODULE_TAGS := optional eng 30 | LOCAL_MODULE_CLASS := ETC 31 | LOCAL_SRC_FILES := etc/init.wifi.rc 32 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) 33 | include $(BUILD_PREBUILT) 34 | 35 | include $(CLEAR_VARS) 36 | LOCAL_MODULE := ueventd.universal3470.rc 37 | LOCAL_MODULE_TAGS := optional eng 38 | LOCAL_MODULE_CLASS := ETC 39 | LOCAL_SRC_FILES := etc/ueventd.universal3470.rc 40 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) 41 | include $(BUILD_PREBUILT) 42 | -------------------------------------------------------------------------------- /overlay/packages/apps/Settings/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | true 20 | 21 | true 22 | 23 | false 24 | 25 | 31 | 1 32 | 33 | -------------------------------------------------------------------------------- /apps/ExtendedSettings/res/layout/gsensor.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |