Skip to content

Commit

Permalink
Update 2.1.0
Browse files Browse the repository at this point in the history
Breaking changes for Extension API (ViewRevealManager)

API cleaning in ViewRevealManager for custom implementations

added ViewTransformation for implementing custom View clipping logic
added SpringViewRevealManager that adds new physics based animation
  • Loading branch information
ozodrukh committed Mar 16, 2017
1 parent e45b1a8 commit 45b4625
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 5 deletions.
16 changes: 15 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.android.tools.build:gradle:2.4.0-alpha1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -19,3 +19,17 @@ allprojects {
jcenter()
}
}


ext {
minSDKVersion = 16
targetSDKVersion = 25
compileSDKVersion = 25
buildToolsVersion = BUILD_TOOLS_VERSION

support_lib_version = SUPPORT_LIB_VERSION
}

task clean(type: Delete) {
delete rootProject.buildDir
}
12 changes: 11 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,17 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
org.gradle.parallel=true
org.gradle.daemon=true

####
# Global Application Enviorenment Properties
###
# Android SDK Properties
MIN_SDK=21
TARGET_SDK=24
COMPILE_SDK=24
BUILD_TOOLS_VERSION=25.0.2
# Support Library
SUPPORT_LIB_VERSION=25.3.0
# Repository Data
VERSION_NAME=1.3.0
VERSION_CODE=3

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Apr 29 22:03:31 UZT 2016
#Wed Mar 15 10:12:15 UZT 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':app', ':circualreveal'
include ':app', ':circualreveal', ':spring-revealmanager'

0 comments on commit 45b4625

Please sign in to comment.