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

Android build error compileSdkVersion #9

Open
razzfox opened this issue Mar 14, 2024 · 1 comment
Open

Android build error compileSdkVersion #9

razzfox opened this issue Mar 14, 2024 · 1 comment

Comments

@razzfox
Copy link

razzfox commented Mar 14, 2024

Error when building for Android, package version @ihealth/ihealthlibrary-react-native: "1.7.0"

[RUN_GRADLEW] * What went wrong:
[RUN_GRADLEW] Could not determine the dependencies of task ':ihealth_ihealthlibrary-react-native:bundleLibCompileToJarDebug'.
[RUN_GRADLEW] > Could not create task ':ihealth_ihealthlibrary-react-native:compileDebugJavaWithJavac'.
[RUN_GRADLEW]    >
[RUN_GRADLEW] In order to compile Java 9+ source, please set compileSdkVersion to 30 or above```
@Sriram-52
Copy link

For future reference, use the following snippet in your app/build.gradle if needed.

subprojects { subproject ->
  afterEvaluate{
    if((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
        android {
            compileSdkVersion rootProject.ext.compileSdkVersion
            buildToolsVersion rootProject.ext.buildToolsVersion
        }
    }
  }
}
    

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

No branches or pull requests

2 participants