-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
WIP: Upgrade to gradle android build tool 3.0 #248
WIP: Upgrade to gradle android build tool 3.0 #248
Conversation
Travis seems to be failing due to license acceptance. I will update travis config if this PR gets interest of author. |
androidTargetSdkVersion = 21 | ||
androidCompileSdkVersion = 21 | ||
androidTargetSdkVersion = 25 | ||
androidCompileSdkVersion = 25 |
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.
I would change them to 26 to be more consistent.
I think that there were used 21
(much lower to build tools version) just to do not need to implement Android permission runtime for release version of app.
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-bin.zip |
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.
there is already 4.3
@adikari you changed tools version in Gradle, but you forgot to change it in CI config (which is a common mistake in PR like this). (As you already noticed) that's why Travis task fails. |
No description provided.