LineageSettings: Add back option to pass swipe-up-to-unlock

This got removed unintentionally by:
  Author: Sam Mortimer <sam@mortimer.me.uk>
  Date:   Wed Oct 11 23:00:18 2017 -0700
      Remove ThirdPartyKeyguard
      Change-Id: Ie3717b9ea7a23988ebd646ed7e2fe8f105a4a693

Add back the lock util methods from the original commit:
  Author: Danesh M <daneshm90@gmail.com>
  Date:   Mon Feb 8 14:57:31 2016 -0800
      CMSettings : Add option to pass swipe-up-to-unlock (3/3)
      CYNGNOS-1873
      Change-Id: Icdd2505dbc56a77f49a76ea61daf75c5d8a24fd6

Change-Id: I6177700be955f42505dbd5fbb23461f8e151e1b4
1 file changed
tree: 92bf8846705392c2c3ead12b29f43f6fafd3d21c
  1. api/
  2. host/
  3. lineage/
  4. packages/
  5. samples/
  6. sdk/
  7. tests/
  8. .gitignore
  9. Android.mk
  10. CleanSpec.mk
  11. org.lineageos.platform.xml
  12. README.md
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.