lineage-sdk internal: Add StopMotionVectorDrawable from uicommon

*) Move it here so that external/uicommon can be
   deprecated.

Origial uicommon StopMotionVectorDrawable.java history:

Author: Adrian DC <radian.dc@gmail.com>
Date:   Fri Oct 28 10:55:25 2016 +0200
    uicommon: Fix getAnimatorSetViaReflection UI usage
     * The receiver can be an instance of VectorDrawableAnimatorRT
        instead of VectorDrawableAnimatorUI since AOSP 7.x,
        therefore call the forceAnimationOnUI method to ensure
        mAnimatorSet is an instance of VectorDrawableAnimatorUI
     * Change introduced in "Support running AVD on UI thread",
        frameworks_base: I372ecd3dc52e3fa0bdce3a1e9c19443f9b199027
    Change-Id: Ie00c86474f38600b4f10889e292b20a8f7e6531e
    Signed-off-by: Adrian DC <radian.dc@gmail.com>

Author: Steve Kondik <steve@cyngn.com>
Date:   Wed Oct 12 17:02:17 2016 -0700
    uicommon: Fix StopMotionVectorDrawable for N
     * The guts of AVD have changed in N, adjust hacks accordingly.
    Change-Id: Ia28c3099389252a3fd57373e02800fee9d467f64

Author: d34d <clark@cyngn.com>
Date:   Wed May 4 08:59:27 2016 -0700
    Add StopMotionVectorDrawable to uicommon
    The StopMotionVectorDrawable provides control over the position
    within an animation set of the warpped AnimatedVectorDrawable.
    Change-Id: I586c54c7dbd5c9f6f373a87e544bc0669f4ba8f1

Change-Id: I868a852e6c5f6f1ab7926deeb109fc68ad4449da
1 file changed
tree: 2f80c4e1e10e0560e7969be5c5a0446e2332174c
  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.