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.
![]() * Partially disable gms chimera service Pulkit077 <pulkitagarwal2k1@gmail.com> * Add google OTA to global disabledComponent Rajan Palaniya <razorpaul@gmail.com> * Disable OtaSuggestionSummaryProvider from GMS Sultan Alsawaf <sultan@kerneltoast.com> * Disable NearbyMessagingService * Disable DiscoveryService Michael W <baddaemon87@gmail.com> * Disable intrusive gms components dlwlrma123 <alexfinhart@gmail.com> Co-authored-by: Pulkit077 <pulkitagarwal2k1@gmail.com> Co-authored-by: Rajan Palaniya <razorpaul@gmail.com> Co-authored-by: Sultan Alsawaf <sultan@kerneltoast.com> Co-authored-by: Michael W <baddaemon87@gmail.com> Co-authored-by: dlwlrma123 <alexfinhart@gmail.com> |
2 weeks ago | |
---|---|---|
api | 1 year ago | |
host/migration | 1 year ago | |
lib | 2 years ago | |
lineage | 2 weeks ago | |
packages | 2 weeks ago | |
samples | 2 years ago | |
sdk | 2 weeks ago | |
tests | 1 year ago | |
.gitignore | 7 years ago | |
Android.bp | 7 months ago | |
Android.mk | 3 weeks ago | |
CleanSpec.mk | 6 years ago | |
README.md | 5 years ago |
README.md
LineageOS 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.lineageos: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.lineageos:platform.sdk:6.0-SNAPSHOT'
}
Wiki
For further inquiries regarding this project, please reference the wiki.