build.gradle 640 B

12345678910111213141516171819202122
  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. kotlinVersion = "1.6.20"
  9. // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
  10. ndkVersion = "23.1.7779620"
  11. }
  12. repositories {
  13. google()
  14. mavenCentral()
  15. }
  16. dependencies {
  17. classpath("com.android.tools.build:gradle:7.3.1")
  18. classpath("com.facebook.react:react-native-gradle-plugin")
  19. }
  20. }