react-native-video/examples/basic/android/build.gradle

42 lines
1.0 KiB
Groovy
Raw Normal View History

2015-12-06 23:25:18 -07:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2019-06-19 01:37:21 -06:00
ext {
2022-04-23 14:15:11 -06:00
buildToolsVersion = "29.0.2"
minSdkVersion = 16
compileSdkVersion = 31
targetSdkVersion = 29
supportLibVersion = "28.0.0"
2019-06-19 01:37:21 -06:00
}
2015-12-06 23:25:18 -07:00
repositories {
jcenter()
2019-06-19 01:37:21 -06:00
google()
2015-12-06 23:25:18 -07:00
}
dependencies {
2022-04-23 14:15:11 -06:00
classpath 'com.android.tools.build:gradle:4.0.2'
2015-12-06 23:25:18 -07:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
2019-07-05 18:37:38 -06:00
google()
2019-06-19 01:37:21 -06:00
maven {
url "https://jitpack.io"
}
2015-12-06 23:25:18 -07:00
jcenter()
2016-09-19 18:46:15 -06:00
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")
}
2015-12-06 23:25:18 -07:00
}
}