build.gradle 601 B

123456789101112131415161718192021
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext {
  4. buildToolsVersion = "33.0.0"
  5. minSdkVersion = 21
  6. compileSdkVersion = 33
  7. targetSdkVersion = 33
  8. // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
  9. ndkVersion = "23.1.7779620"
  10. }
  11. repositories {
  12. google()
  13. mavenCentral()
  14. }
  15. dependencies {
  16. classpath("com.android.tools.build:gradle")
  17. classpath("com.facebook.react:react-native-gradle-plugin")
  18. }
  19. }