apply plugin: "com.android.application" apply plugin: "org.jetbrains.kotlin.android" android { namespace "dev.yuzu.gca" compileSdk rootProject.ext.compileSdkVersion defaultConfig { applicationId "dev.yuzu.gca" minSdk rootProject.ext.minSdkVersion targetSdk rootProject.ext.targetSdkVersion versionCode 4 versionName "0.1.0" } buildTypes { release { minifyEnabled false } debug { debuggable true } } compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = "17" } } dependencies { implementation("com.facebook.react:react-android") implementation("com.facebook.react:hermes-android") }