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.
 
 
 
 
 
 

59 lines
1.7 KiB

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "30.0.2"
minSdkVersion = 24
compileSdkVersion = 32
targetSdkVersion = 32
kotlinVersion = '1.5.0'
ndkVersion = "22.0.7026061"
androidXCore = "1.7.0"
}
repositories {
google()
mavenCentral()
maven { url 'https://maven.google.com' }
maven {url 'https://developer.huawei.com/repo/'}
}
dependencies {
classpath("com.android.tools.build:gradle:4.2.2")
classpath 'com.huawei.agconnect:agcp:1.6.0.300'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
exclusiveContent {
filter {
includeGroup "com.facebook.react"
}
forRepository {
maven {
url "$rootDir/../node_modules/react-native/android"
}
}
}
mavenCentral()
mavenLocal()
maven {
url("$rootDir/../node_modules/react-native/android")
}
maven {
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
maven { url 'https://www.jitpack.io' }
maven { url 'https://maven.google.com' }
maven {url 'https://developer.huawei.com/repo/'}
jcenter() {
content {
includeModule("com.yqritc", "android-scalablevideoview")
}
}
}
}