Seems not working with sdk versions from 30 or above
When I perform the build of the project after follow install as is detailed in readme I got this error:
The specified Android SDK Build Tools version (29.0.3) is ignored, as it is below the minimum supported version (33.0.1) for Android Gradle Plugin 8.1.1. Android SDK Build Tools 33.0.1 will be used. To suppress this warning, remove "buildToolsVersion '29.0.3'" from your build.gradle file, as each version of the Android Gradle Plugin now has a default version of the build tools.
my build.gradle:
`buildscript { ext { buildToolsVersion = "34.0.0" minSdkVersion = 21 compileSdkVersion = 34 targetSdkVersion = 34 ndkVersion = "25.1.8937393" kotlinVersion = "1.8.0" } repositories { google() mavenCentral() } dependencies { classpath("com.android.tools.build:gradle") classpath("com.facebook.react:react-native-gradle-plugin") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin") } }
apply plugin: "com.facebook.react.rootproject"`
I also found this for more info: