-
Notifications
You must be signed in to change notification settings - Fork 248
io.codetail library removal from the project and included as a dependency #29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,7 +29,7 @@ android { | |
| buildToolsVersion "23.0.3" | ||
|
|
||
| defaultConfig { | ||
| minSdkVersion 14 | ||
| minSdkVersion 15 | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's the reason for bumping this? CircularReveal supports SDK 14.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not anymore. It's now supporting SDK >= 15:
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 { | ||
|
|
@@ -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' | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These two scripts should be left in
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay.