// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext { buildToolsVersion = "29.0.3" minSdkVersion = 23 compileSdkVersion = 31 targetSdkVersion = 31 } repositories { google() gradlePluginPortal() mavenCentral() jcenter() } dependencies { classpath("com.android.tools.build:gradle:4.2.2") classpath 'com.google.gms:google-services:4.3.5' classpath 'com.google.firebase:firebase-crashlytics-gradle:2.4.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { mavenLocal() maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm url(new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), "../android")) } maven { // Android JSC is installed from npm url(new File(["node", "--print", "require.resolve('jsc-android/package.json')"].execute(null, rootDir).text.trim(), "../dist")) } configurations.all { resolutionStrategy { force "com.facebook.soloader:soloader:0.10.1" } } google() gradlePluginPortal() mavenCentral() maven { url 'https://www.jitpack.io' } jcenter() } } allprojects { repositories { maven { url "$rootDir/../node_modules/expo-camera/android/maven" } } }