广告屏react-native项目
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

38 lines
1.1 KiB

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