Compare commits

...

8 Commits

Author SHA1 Message Date
yova b116f1404c top locale DE
4 months ago
Kevin F. Haggerty f5a12fe518
Bump Security String to 2023-12-05
5 months ago
Kevin F. Haggerty 4f18b156ef
Bump Security String to 2023-11-05
6 months ago
LuK1337 217e075f20 fixup! releasetools: support reading release keys out of some sort of command
7 months ago
Kevin F. Haggerty 24da9be8f3
Bump Security String to 2023-10-06
7 months ago
Kevin F. Haggerty 3d8c07cd9e
Bump Security String to 2023-09-05
8 months ago
Kevin F. Haggerty 47e2c7dd9f
Bump Security String to 2023-08-05
9 months ago
Nolen Johnson 57bf2b4459 build: handheld_product: Allow devices to not have cameras
10 months ago

@ -240,7 +240,7 @@ ifndef PLATFORM_SECURITY_PATCH
# It must be of the form "YYYY-MM-DD" on production devices.
# It must match one of the Android Security Patch Level strings of the Public Security Bulletins.
# If there is no $PLATFORM_SECURITY_PATCH set, keep it empty.
PLATFORM_SECURITY_PATCH := 2023-07-05
PLATFORM_SECURITY_PATCH := 2023-12-05
endif
.KATI_READONLY := PLATFORM_SECURITY_PATCH

@ -50,7 +50,7 @@ PRODUCT_PROPERTY_OVERRIDES := \
endif
# Put en_US first in the list, so make it default.
PRODUCT_LOCALES := en_US
PRODUCT_LOCALES := de_DE
# Get some sounds
ifeq ($(LINEAGE_BUILD),)

@ -24,7 +24,6 @@ $(call inherit-product, $(SRC_TARGET_DIR)/product/media_product.mk)
PRODUCT_PACKAGES += \
Browser2 \
Calendar \
Camera2 \
Contacts \
DeskClock \
Gallery2 \
@ -35,6 +34,11 @@ PRODUCT_PACKAGES += \
SettingsIntelligence \
frameworks-base-overlays
ifneq ($(PRODUCT_NO_CAMERA),true)
PRODUCT_PACKAGES += \
Camera2
endif
ifeq ($(LINEAGE_BUILD),)
PRODUCT_PACKAGES += \
LatinIME

@ -2161,7 +2161,7 @@ class PasswordManager(object):
ps = subprocess.Popen(self.secure_storage_cmd, shell=True, stdout=subprocess.PIPE)
output = ps.communicate()[0]
if ps.returncode == 0:
current[i] = output
current[i] = output.decode('utf-8')
except Exception as e:
print(e)
pass

Loading…
Cancel
Save