react-native-navigation的迁移库

build.gradle 868B

1234567891011121314151617181920212223242526272829303132333435
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext {
  4. RNNKotlinVersion = '1.3.61'
  5. }
  6. repositories {
  7. mavenLocal()
  8. mavenCentral()
  9. google()
  10. jcenter()
  11. }
  12. dependencies {
  13. classpath 'com.android.tools.build:gradle:3.5.3'
  14. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61"
  15. // NOTE: Do not place your application dependencies here; they belong
  16. // in the individual module build.gradle files
  17. }
  18. }
  19. allprojects {
  20. repositories {
  21. mavenLocal()
  22. mavenCentral()
  23. google()
  24. jcenter()
  25. maven {
  26. // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
  27. url "$rootDir/../../node_modules/react-native/android"
  28. }
  29. }
  30. }