diff options
Diffstat (limited to 'android/build.gradle')
| -rw-r--r-- | android/build.gradle | 40 |
1 files changed, 40 insertions, 0 deletions
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' } + } +} |
