Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 1 | # Permissions for cmsdk services |
| 2 | PRODUCT_COPY_FILES += \ |
| 3 | vendor/cm/config/permissions/org.cyanogenmod.theme.xml:system/etc/permissions/org.cyanogenmod.theme.xml \ |
Adnan Begovic | 14768c4 | 2016-03-15 14:20:37 -0700 | [diff] [blame] | 4 | vendor/cm/config/permissions/org.cyanogenmod.livelockscreen.xml:system/etc/permissions/org.cyanogenmod.livelockscreen.xml \ |
Adnan Begovic | 78a12ed | 2016-03-15 16:43:58 -0700 | [diff] [blame] | 5 | vendor/cm/config/permissions/org.cyanogenmod.statusbar.xml:system/etc/permissions/org.cyanogenmod.statusbar.xml \ |
Adnan Begovic | 7ff86fa | 2016-03-24 17:26:10 -0700 | [diff] [blame] | 6 | vendor/cm/config/permissions/org.cyanogenmod.profiles.xml:system/etc/permissions/org.cyanogenmod.profiles.xml \ |
Adnan Begovic | 0edc641 | 2016-03-24 17:35:48 -0700 | [diff] [blame] | 7 | vendor/cm/config/permissions/org.cyanogenmod.appsuggest.xml:system/etc/permissions/org.cyanogenmod.appsuggest.xml \ |
Adnan Begovic | 37e59c1 | 2016-03-25 12:38:48 -0700 | [diff] [blame] | 8 | vendor/cm/config/permissions/org.cyanogenmod.telephony.xml:system/etc/permissions/org.cyanogenmod.telephony.xml \ |
Adnan Begovic | 7877680 | 2016-03-25 12:45:37 -0700 | [diff] [blame] | 9 | vendor/cm/config/permissions/org.cyanogenmod.performance.xml:system/etc/permissions/org.cyanogenmod.performance.xml \ |
Luis Vidal | 6d61d30 | 2016-03-21 10:18:29 -0700 | [diff] [blame] | 10 | vendor/cm/config/permissions/org.cyanogenmod.partner.xml:system/etc/permissions/org.cyanogenmod.partner.xml \ |
| 11 | vendor/cm/config/permissions/org.cyanogenmod.weather.xml:system/etc/permissions/org.cyanogenmod.weather.xml |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 12 | |
| 13 | # CM Platform Library |
| 14 | PRODUCT_PACKAGES += \ |
| 15 | org.cyanogenmod.platform-res \ |
| 16 | org.cyanogenmod.platform \ |
| 17 | org.cyanogenmod.platform.xml |
| 18 | |
| 19 | # CM Hardware Abstraction Framework |
| 20 | PRODUCT_PACKAGES += \ |
| 21 | org.cyanogenmod.hardware \ |
| 22 | org.cyanogenmod.hardware.xml |
| 23 | |
| 24 | ifndef CM_PLATFORM_SDK_VERSION |
| 25 | # This is the canonical definition of the SDK version, which defines |
| 26 | # the set of APIs and functionality available in the platform. It |
| 27 | # is a single integer that increases monotonically as updates to |
| 28 | # the SDK are released. It should only be incremented when the APIs for |
| 29 | # the new release are frozen (so that developers don't write apps against |
| 30 | # intermediate builds). |
Adnan Begovic | 7ae471d | 2016-04-01 15:38:57 -0700 | [diff] [blame^] | 31 | CM_PLATFORM_SDK_VERSION := 6 |
Adnan Begovic | f3610f5 | 2016-03-15 14:17:47 -0700 | [diff] [blame] | 32 | endif |
| 33 | |
| 34 | ifndef CM_PLATFORM_REV |
| 35 | # For internal SDK revisions that are hotfixed/patched |
| 36 | # Reset after each CM_PLATFORM_SDK_VERSION release |
| 37 | # If you are doing a release and this is NOT 0, you are almost certainly doing it wrong |
| 38 | CM_PLATFORM_REV := 0 |
| 39 | endif |
| 40 | |
| 41 | # CyanogenMod Platform SDK Version |
| 42 | PRODUCT_PROPERTY_OVERRIDES += \ |
| 43 | ro.cm.build.version.plat.sdk=$(CM_PLATFORM_SDK_VERSION) |
| 44 | |
| 45 | # CyanogenMod Platform Internal |
| 46 | PRODUCT_PROPERTY_OVERRIDES += \ |
| 47 | ro.cm.build.version.plat.rev=$(CM_PLATFORM_REV) |
| 48 | |