Skip to content

Commit

Permalink
Fix lint errors and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Tibolte committed May 30, 2015
1 parent 65d81bd commit 736a4e3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
8 changes: 7 additions & 1 deletion elasticdownload/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ android {
compileSdkVersion 22
buildToolsVersion "22.0.1"

android {
lintOptions {
abortOnError false
}
}

defaultConfig {
minSdkVersion 8
targetSdkVersion 22
Expand All @@ -23,5 +29,5 @@ apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.nineoldandroids:library:2.4.0+'
compile 'com.nineoldandroids:library:2.4.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ public void stop() {

/**
* Reverses ongoing animations or starts pending animations in reverse.
* <p/>
*
* NOTE: Only works of all animations are ValueAnimators.
*/
public void reverse() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ PorterDuffColorFilter updateTintFilter(PorterDuffColorFilter tintFilter, ColorSt
* Parses a {@link android.graphics.PorterDuff.Mode} from a tintMode
* attribute's enum value.
*
* @hide
*/
public static PorterDuff.Mode parseTintMode(int value, PorterDuff.Mode defaultMode) {
switch (value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,9 @@
*/
public final class Outline {

/** @hide */
public Path mPath;
/** @hide */
public Rect mRect;
/** @hide */
public float mRadius;
/** @hide */
public float mAlpha;

/**
Expand Down Expand Up @@ -67,7 +63,7 @@ public boolean isEmpty() {
* Currently, only Outlines that can be represented as a rectangle, circle,
* or round rect support clipping.
*
* @see {@link android.view.View#setClipToOutline(boolean)}
* {@link android.view.View#setClipToOutline(boolean)}
*/
public boolean canClip() {
return !isEmpty() && mRect != null;
Expand Down

0 comments on commit 736a4e3

Please sign in to comment.