Skip to content
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

BuildToolsVersion compatibility with RN 0.56 #458

Closed
xaviraol opened this issue Jul 10, 2018 · 6 comments
Closed

BuildToolsVersion compatibility with RN 0.56 #458

xaviraol opened this issue Jul 10, 2018 · 6 comments

Comments

@xaviraol
Copy link

The error:

 Could not resolve all dependencies for configuration ':app:_debugApk'.
   > A problem occurred configuring project ':react-native-sound'.
      > The SDK Build Tools revision (23.0.1) is too low for project ':react-native-sound'. Minimum required is 25.0.0

Would it be possible to update them following this approach?

@solaomosola
Copy link

  • What went wrong:
    A problem occurred configuring project ':app'.

Could not resolve all dependencies for configuration ':app:_debugApk'.
A problem occurred configuring project ':react-native-sound'.
> The SDK Build Tools revision (23.0.1) is too low for project ':react-native-sound'. Minimum required is 25.0.0

CptFabulouso added a commit to CptFabulouso/react-native-sound that referenced this issue Jul 12, 2018
@hamdigatri
Copy link

I'am having the same issue after updating to react native 0.56.0 anyone knows what to do ?

@Jaewoook
Copy link

Jaewoook commented Sep 2, 2018

same issue in react native 0.56.+. are you have update plan yet?

currently I manually change the react-native-sound/android/build.gradle file's sdk version.

UPDATE: we can force the root project's sdk version to react-native-sound

subprojects {
    afterEvaluate {project ->
        if (project.hasProperty("android")) {
            android {
                compileSdkVersion 26
                buildToolsVersion "26.0.3"
            }
        }
    }
}

@ThaJay
Copy link

ThaJay commented Sep 3, 2018

> Configure project :react-native-sound

Configuration 'compile' in project ':react-native-sound' is deprecated. Use 'implementation' instead.
WARNING: The specified Android SDK Build Tools version (23.0.1) is ignored, as it is below the minimum supported version (26.0.2) for Android Gradle Plugin 3.0.1.
Android SDK Build Tools 26.0.2 will be used.
To suppress this warning, remove "buildToolsVersion '23.0.1'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools.

@skb1129
Copy link

skb1129 commented Sep 18, 2018

react-native-sound package needs to be updated to use with RN 0.56

@paulmelnikow
Copy link
Collaborator

Looks like this has been resolved. The project now supports RN 0.60.

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants