From 67b6f338cfe4da739d39dc6764d11efa00105d81 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Thu, 9 Dec 2021 23:15:33 +0100 Subject: Created a new Expo app --- android/build.gradle | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 android/build.gradle (limited to 'android/build.gradle') diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..0388225 --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,40 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + ext { + buildToolsVersion = "29.0.3" + minSdkVersion = 21 + compileSdkVersion = 30 + targetSdkVersion = 30 + } + repositories { + google() + mavenCentral() + jcenter() + } + dependencies { + classpath("com.android.tools.build:gradle:4.1.0") + + // 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")) + } + + google() + mavenCentral() + jcenter() + maven { url 'https://www.jitpack.io' } + } +} -- cgit v1.3.1