Application Android et IOS pour l'amicale des élèves https://play.google.com/store/apps/details?id=fr.amicaleinsat.application
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext {
  4. buildToolsVersion = "29.0.2"
  5. minSdkVersion = 21
  6. compileSdkVersion = 29
  7. targetSdkVersion = 29
  8. }
  9. repositories {
  10. google()
  11. jcenter()
  12. }
  13. dependencies {
  14. classpath("com.android.tools.build:gradle:3.5.3")
  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. maven {
  23. // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
  24. url("$rootDir/../node_modules/react-native/android")
  25. }
  26. maven {
  27. // Android JSC is installed from npm
  28. url("$rootDir/../node_modules/jsc-android/dist")
  29. }
  30. maven {
  31. // expo-camera bundles a custom com.google.android:cameraview
  32. url "$rootDir/../node_modules/expo-camera/android/maven"
  33. }
  34. google()
  35. jcenter()
  36. maven { url 'https://www.jitpack.io' }
  37. }
  38. }