Skip to content

Instantly share code, notes, and snippets.

@tanner-west
Created July 19, 2023 17:52
Show Gist options
  • Save tanner-west/3ccf46e54227b3b9f791240511ef524a to your computer and use it in GitHub Desktop.
Save tanner-west/3ccf46e54227b3b9f791240511ef524a to your computer and use it in GitHub Desktop.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "33.0.0"
minSdkVersion = 21
compileSdkVersion = 33
targetSdkVersion = 33
kotlinVersion = "1.8.0"
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
ndkVersion = "23.1.7779620"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.4.2")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment