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

38 lines
1002 B
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 = 29
2022-04-23 14:15:11 -06:00
targetSdkVersion = 29
}
2015-12-06 23:25:18 -07:00
repositories {
2019-06-19 01:37:21 -06:00
google()
jcenter()
2015-12-06 23:25:18 -07:00
}
dependencies {
classpath("com.android.tools.build:gradle:4.2.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()
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")
2016-09-19 18:46:15 -06:00
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
jcenter()
maven { url 'https://www.jitpack.io' }
2015-12-06 23:25:18 -07:00
}
}