-
Notifications
You must be signed in to change notification settings - Fork 136
update gradle build tools and gradle version used #1000
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 |
---|---|---|
|
@@ -2,7 +2,6 @@ apply plugin: 'com.android.library' | |
|
||
android { | ||
compileSdkVersion 27 | ||
buildToolsVersion "27.0.3" | ||
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. This shouldn't be set to 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. Nope, as mentioned in the PR description the new gradle build tools have their own internal default for |
||
|
||
defaultConfig { | ||
minSdkVersion 19 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,4 @@ | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.opencv" | ||
android:versionCode="3300" | ||
android:versionName="3.3.0"> | ||
|
||
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="21" /> | ||
</manifest> | ||
android:versionName="3.3.0" /> | ||
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. This change is a bit unrelated to the topic of this PR but it's OK. 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. It's not, as mentioned in the PR description build tools 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. I split it out anyone into #1006, if that gets merged first I'll rebase this branch 👍 |
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 shouldn't be set to
buildToolsVersion "28.0.3"
?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.
See comment below 👍