blob: 022e69dcf01d02b6836ddb13dba12b5d8bf90ab7 [file] [log] [blame]
Sam Mortimer19ce2d32017-09-18 21:05:19 -07001# Permissions for lineage sdk services
Adnan Begovicf3610f52016-03-15 14:17:47 -07002PRODUCT_COPY_FILES += \
Michael Bestasf4032b82019-09-15 16:32:33 +03003 vendor/lineage/config/permissions/org.lineageos.audio.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.audio.xml \
Han Wanged76afd2019-09-21 17:28:12 +02004 vendor/lineage/config/permissions/org.lineageos.hardware.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.hardware.xml \
Michael Bestasf4032b82019-09-15 16:32:33 +03005 vendor/lineage/config/permissions/org.lineageos.livedisplay.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.livedisplay.xml \
6 vendor/lineage/config/permissions/org.lineageos.performance.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.performance.xml \
7 vendor/lineage/config/permissions/org.lineageos.profiles.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.profiles.xml \
8 vendor/lineage/config/permissions/org.lineageos.settings.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.settings.xml \
Michael Bestas35b7e532020-05-06 15:49:50 +03009 vendor/lineage/config/permissions/org.lineageos.trust.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.trust.xml
Adnan Begovicf3610f52016-03-15 14:17:47 -070010
Sam Mortimer477d8fe2017-10-17 11:48:28 -070011# Lineage Platform Library
Adnan Begovicf3610f52016-03-15 14:17:47 -070012PRODUCT_PACKAGES += \
Sam Mortimer19ce2d32017-09-18 21:05:19 -070013 org.lineageos.platform-res \
14 org.lineageos.platform \
15 org.lineageos.platform.xml
Adnan Begovicf3610f52016-03-15 14:17:47 -070016
Steve Kondik3fe3faa2016-04-23 00:54:50 -070017# JNI Libraries
18PRODUCT_PACKAGES += \
Sam Mortimer19ce2d32017-09-18 21:05:19 -070019 liblineage-sdk_platform_jni
Steve Kondik3fe3faa2016-04-23 00:54:50 -070020
Sam Mortimer19ce2d32017-09-18 21:05:19 -070021ifndef LINEAGE_PLATFORM_SDK_VERSION
Adnan Begovicf3610f52016-03-15 14:17:47 -070022 # This is the canonical definition of the SDK version, which defines
23 # the set of APIs and functionality available in the platform. It
24 # is a single integer that increases monotonically as updates to
25 # the SDK are released. It should only be incremented when the APIs for
26 # the new release are frozen (so that developers don't write apps against
27 # intermediate builds).
Joey3c8afe42018-03-11 15:13:36 +010028 LINEAGE_PLATFORM_SDK_VERSION := 9
Adnan Begovicf3610f52016-03-15 14:17:47 -070029endif
30
Sam Mortimer19ce2d32017-09-18 21:05:19 -070031ifndef LINEAGE_PLATFORM_REV
Adnan Begovicf3610f52016-03-15 14:17:47 -070032 # For internal SDK revisions that are hotfixed/patched
Sam Mortimer19ce2d32017-09-18 21:05:19 -070033 # Reset after each LINEAGE_PLATFORM_SDK_VERSION release
Adnan Begovicf3610f52016-03-15 14:17:47 -070034 # If you are doing a release and this is NOT 0, you are almost certainly doing it wrong
Sam Mortimer19ce2d32017-09-18 21:05:19 -070035 LINEAGE_PLATFORM_REV := 0
Adnan Begovicf3610f52016-03-15 14:17:47 -070036endif