build.gradle 721 B

1234567891011121314151617181920212223
  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.7.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. // classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
  20. }
  21. }