Changes needed for gradle 3.0.1 compatibility
See original GitHub issueSome minor changes are needed for gradle 3.0.1 compatibility: in android/build.gradle:
- Remove the
buildToolsVersion
, gradle now specifies a default and the current value conflicts with that. - Declare dependencies using
api
notcompile
per https://developer.android.com/studio/build/gradle-plugin-3-0-0-migration.html#new_configurations
We are currently hacking these changes with a script in status.im, and would rather it is fixed upstream. Thanks!
Parent issue: https://github.com/status-im/status-react/issues/3037
Issue Analytics
- State:
- Created 6 years ago
- Comments:28
Top Results From Across the Web
Changes needed for gradle 3.0.1 compatibility #581 - GitHub
Some minor changes are needed for gradle 3.0.1 compatibility: in android/build.gradle: Remove the buildToolsVersion, gradle now specifies a ...
Read more >Compatibility Matrix - Gradle User Manual
A Java version between 8 and 19 is required to execute Gradle. Java 20 and later versions are not yet supported. Java 6...
Read more >Android Gradle plugin release notes - Android Developers
Update the Android Gradle plugin; Update Gradle. Older versions. Android Gradle plugin and Android Studio compatibility; Versioning changes (November 2020) ...
Read more >Changes needed for gradle 3.0.1 compatibility - Bountysource
Some minor changes are needed for gradle 3.0.1 compatibility: in android/build.gradle: Remove the buildToolsVersion , gradle now specifies a ...
Read more >Gradle Enterprise version compatibility
Major or minor version updates to the Gradle Enterprise Gradle plugin indicate a compatibility change with Gradle Enterprise (e.g. 3.0 → 3.1 or...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jskidd3 Sure, here’s the diff of the changes I needed for a fresh project:
Installed and ran ok after I also manually created the assets bundle (don’t believe this step has anything to do with gradle upgrade).
Made a PR https://github.com/facebook/react-native/pull/17747