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

update the targetSdk version #580

Closed
Qdafengzi opened this issue Feb 29, 2024 · 1 comment · Fixed by #627
Closed

update the targetSdk version #580

Qdafengzi opened this issue Feb 29, 2024 · 1 comment · Fixed by #627
Assignees
Labels
bug report Something isn't working platform: Android Issue related to Android platform

Comments

@Qdafengzi
Copy link

  Could not determine the dependencies of task ':react-native-community_slider:bundleLibCompileToJarDebug'.
  > Could not create task ':react-native-community_slider:compileDebugJavaWithJavac'.
     > In order to compile Java 9+ source, please set compileSdkVersion to 30 or above
@Qdafengzi Qdafengzi added the bug report Something isn't working label Feb 29, 2024
@BartoszKlonowski BartoszKlonowski added the platform: Android Issue related to Android platform label Feb 29, 2024
@draggie draggie self-assigned this Aug 26, 2024
@draggie
Copy link
Contributor

draggie commented Aug 27, 2024

@Qdafengzi Im preparing the update, however if someone has this issue it can be solved temporarily like this

subprojects {
    afterEvaluate { project ->
        if (project.hasProperty("android")) {
            project.android.compileSdkVersion = 30
        }
    }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug report Something isn't working platform: Android Issue related to Android platform
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

3 participants