Sam Mortimer | 19ce2d3 | 2017-09-18 21:05:19 -0700 | [diff] [blame] | 1 | # Permissions for lineage sdk services |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 2 | PRODUCT_COPY_FILES += \ |
Michael Bestas | f4032b8 | 2019-09-15 16:32:33 +0300 | [diff] [blame] | 3 | vendor/lineage/config/permissions/org.lineageos.audio.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.audio.xml \ |
Han Wang | ed76afd | 2019-09-21 17:28:12 +0200 | [diff] [blame] | 4 | vendor/lineage/config/permissions/org.lineageos.hardware.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.hardware.xml \ |
Michael Bestas | f4032b8 | 2019-09-15 16:32:33 +0300 | [diff] [blame] | 5 | 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 \ |
| 9 | vendor/lineage/config/permissions/org.lineageos.style.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.style.xml \ |
| 10 | vendor/lineage/config/permissions/org.lineageos.trust.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.trust.xml \ |
| 11 | vendor/lineage/config/permissions/org.lineageos.weather.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/permissions/org.lineageos.weather.xml |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 12 | |
Sam Mortimer | 477d8fe | 2017-10-17 11:48:28 -0700 | [diff] [blame] | 13 | # Lineage Platform Library |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 14 | PRODUCT_PACKAGES += \ |
Sam Mortimer | 19ce2d3 | 2017-09-18 21:05:19 -0700 | [diff] [blame] | 15 | org.lineageos.platform-res \ |
| 16 | org.lineageos.platform \ |
| 17 | org.lineageos.platform.xml |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 18 | |
Steve Kondik | 3fe3faa | 2016-04-23 00:54:50 -0700 | [diff] [blame] | 19 | # JNI Libraries |
| 20 | PRODUCT_PACKAGES += \ |
Sam Mortimer | 19ce2d3 | 2017-09-18 21:05:19 -0700 | [diff] [blame] | 21 | liblineage-sdk_platform_jni |
Steve Kondik | 3fe3faa | 2016-04-23 00:54:50 -0700 | [diff] [blame] | 22 | |
Sam Mortimer | 19ce2d3 | 2017-09-18 21:05:19 -0700 | [diff] [blame] | 23 | ifndef LINEAGE_PLATFORM_SDK_VERSION |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 24 | # This is the canonical definition of the SDK version, which defines |
| 25 | # the set of APIs and functionality available in the platform. It |
| 26 | # is a single integer that increases monotonically as updates to |
| 27 | # the SDK are released. It should only be incremented when the APIs for |
| 28 | # the new release are frozen (so that developers don't write apps against |
| 29 | # intermediate builds). |
Joey | 3c8afe4 | 2018-03-11 15:13:36 +0100 | [diff] [blame] | 30 | LINEAGE_PLATFORM_SDK_VERSION := 9 |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 31 | endif |
| 32 | |
Sam Mortimer | 19ce2d3 | 2017-09-18 21:05:19 -0700 | [diff] [blame] | 33 | ifndef LINEAGE_PLATFORM_REV |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 34 | # For internal SDK revisions that are hotfixed/patched |
Sam Mortimer | 19ce2d3 | 2017-09-18 21:05:19 -0700 | [diff] [blame] | 35 | # Reset after each LINEAGE_PLATFORM_SDK_VERSION release |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 36 | # If you are doing a release and this is NOT 0, you are almost certainly doing it wrong |
Sam Mortimer | 19ce2d3 | 2017-09-18 21:05:19 -0700 | [diff] [blame] | 37 | LINEAGE_PLATFORM_REV := 0 |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 38 | endif |