Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:sephiroth74/HorizontalVariableLi…
Browse files Browse the repository at this point in the history
…stView into develop
  • Loading branch information
sephiroth74 committed Dec 12, 2014
2 parents 763600d + 2e45c61 commit 253b525
Show file tree
Hide file tree
Showing 4 changed files with 555 additions and 180 deletions.
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Fri Nov 21 09:27:55 EST 2014
#Fri Nov 21 19:54:54 MST 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2-bin.zip
Expand Up @@ -6,7 +6,10 @@
* Created by alessandro on 21/11/14.
*/
public class ApiHelper {
public static final boolean AT_LEAST_10 = Build.VERSION.SDK_INT >= 10;
public static final boolean AT_LEAST_11 = Build.VERSION.SDK_INT >= 11;
public static final boolean AT_LEAST_14 = Build.VERSION.SDK_INT >= 14;
public static final boolean AT_LEAST_16 = Build.VERSION.SDK_INT >= 16;
public static final boolean AT_LEAST_19 = Build.VERSION.SDK_INT >= 19;
public static final boolean AT_LEAST_21 = Build.VERSION.SDK_INT >= 21;
}

0 comments on commit 253b525

Please sign in to comment.