mirror of
https://github.com/status-im/react-native-webview.git
synced 2026-08-31 19:51:10 +00:00
Builds will no longer be able to resolve artifacts from JCenter after February 1st, 2022 because jcenter servers shut down so, i remove jcenter and update react-native (since 0.65.1 they don't use jcenter) Co-authored-by: bibazavr <lebedevki@lad24.ru>
39 lines
1019 B
Groovy
39 lines
1019 B
Groovy
// 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 = 29
|
|
targetSdkVersion = 28
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:3.5.2")
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
maven {
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
|
url("$rootDir/../../node_modules/react-native/android")
|
|
}
|
|
maven {
|
|
// Android JSC is installed from npm
|
|
url("$rootDir/../../node_modules/jsc-android/dist")
|
|
}
|
|
|
|
google()
|
|
maven { url 'https://www.jitpack.io' }
|
|
}
|
|
}
|