Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 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:1.2.3'
classpath 'com.android.tools.build:gradle:+'

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be left as a specific version so builds are reliably reproducible.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay.

classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.dcendents:android-maven-plugin:1.2'

Expand All @@ -17,5 +17,9 @@ buildscript {
allprojects {
repositories {
jcenter()

maven {
url "https://jitpack.io"
}
}
}
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 @@
#Wed Apr 10 15:27:10 PDT 2013
#Mon Apr 25 17:06:04 EEST 2016

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we leave this file unchanged? Upgrading the gradle version shouldn't be required.

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
9 changes: 6 additions & 3 deletions material-sheet-fab/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
buildToolsVersion "23.0.3"

defaultConfig {
minSdkVersion 14
minSdkVersion 15

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the reason for bumping this? CircularReveal supports SDK 14.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not anymore. It's now supporting SDK >= 15:
https://github.com/ozodrukh/CircularReveal

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah I see. Their readme still says "Lollipop ViewAnimationUtils.createCircularReveal for everyone 2.3+", but the release notes mention the change in SDK support. In that case, I would rather use an older version of CircularReveal than change the SDK support of this library.

targetSdkVersion 23
}
buildTypes {
Expand All @@ -42,7 +42,10 @@ android {

dependencies {
compile 'com.github.asyl.animation:arcanimator:1.0.0'
compile ('com.github.ozodrukh:CircularReveal:1.3.1@aar') {
transitive = true;
}
}

apply from: 'bintray.gradle'
apply from: 'maven.gradle'
//apply from: 'bintray.gradle'

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These two scripts should be left in

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay. I just commented them out because I could't build the app.

//apply from: 'maven.gradle'

This file was deleted.

Loading