Skip to content

Commit

Permalink
Fix restart issues with Jeremiah's fixes
Browse files Browse the repository at this point in the history
Pull fixes from Jeremiah's fork for fixing the restart animation issues
Fix issue booncol#4
Update gradle
Remove javadoc preventing jitpack from finishing builds
  • Loading branch information
ahaverty committed Jun 4, 2017
1 parent 0258176 commit c31fb78
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
Expand Down
2 changes: 1 addition & 1 deletion demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
buildToolsVersion '25.0.0'

defaultConfig {
applicationId "pl.bclogic.pulsator4droid.sampleapplication"
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 Sep 02 11:09:25 CEST 2016
#Sun Jun 04 00:47:33 IST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
2 changes: 1 addition & 1 deletion pulsator4droid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ext { // ./gradlew bintrayUpload -xJavadoc

android {
compileSdkVersion 25
buildToolsVersion "24.0.3"
buildToolsVersion "25.0.2"

defaultConfig {
minSdkVersion 11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public int getColor() {
/**
* Sets the current color of the pulse effect in integer
* Takes effect immediately
* Usage: Color.parseColor("<hex-value>") or getResources().getColor(R.color.colorAccent)
* Usage: Color.parseColor("hex-value") or getResources().getColor(R.color.colorAccent)
* @param color : an integer representation of color
*/
public void setColor(int color) {
Expand Down

0 comments on commit c31fb78

Please sign in to comment.