You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Fivel Sotheby d7b58f2abb Rebrand for Adhoc
Signed-off-by: Velsoth <velsoth@adhoc.zone>
4 years ago
api cmsdk: cmhw: Deprecate TAP_TO_WAKE feature 6 years ago
cm Rebrand for Adhoc 4 years ago
host/migration CMSettings: fix lock screen rotation toggle [3/3] 7 years ago
packages/CMSettingsProvider Disable phone number lookup settings during upgrade 4 years ago
samples cmsdk: correct naming of THIRD_PARTY_KEYGUARD perm 7 years ago
sdk Add a proper description for CM_SETUP_WIZARD_COMPLETED deprecation 6 years ago
system-api cmsdk: cmhw: Deprecate TAP_TO_WAKE feature 6 years ago
tests CMSDK: Tests: AIRPLANE_MODE_ON has moved 6 years ago
.gitignore cmsdk: Ignore "samples" subdir. 7 years ago
Android.mk Replicant branding 6 years ago
CleanSpec.mk cmsdk: Disable verbose logging on doclava, add cleanspec. 7 years ago
README.md cmsdk: Update README references for LineageOS 6 years ago
org.cyanogenmod.platform.xml CMSDK: Create Quick Settings Tile API. 8 years ago

README.md

CyanogenMod Platform SDK

The Platform SDK provides a set of APIs that give you easy access to a variety of different features within LineageOS. The SDK exposes APIs and system level framework access in the Android framework that aren't available in any other distribution.

Setup

You can either download from prebuilts hosted on github or pull directly via Gradle.

Building against release artifacts

Our stable releases are mirrored in Maven Central, and you can fetch the current release by setting your build.gradle dependencies to

dependencies {
    compile 'org.cyanogenmod:platform.sdk:5.+'
}

Building against development snapshots

Within build.gradle make sure your repositories list sonatype OSS repos for snapshots

repositories {
    maven {
        url "https://oss.sonatype.org/content/repositories/snapshots/"
    }
}

You can target the future or development branch by setting your dependencies for 6.0-SNAPSHOT

dependencies {
    compile 'org.cyanogenmod:platform.sdk:6.0-SNAPSHOT'
}

WIKI

For further inquiries regarding this project, please reference the wiki.