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

40 lines
944 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 {
buildToolsVersion = "28.0.3"
2019-06-19 01:46:20 -06:00
minSdkVersion = 16
2019-06-19 01:37:21 -06:00
compileSdkVersion = 28
targetSdkVersion = 28
supportLibVersion = "28.0.0"
}
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 {
2019-06-19 01:37:21 -06:00
classpath 'com.android.tools.build:gradle:3.4.1'
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-06-19 01:37:21 -06:00
maven {
url 'https://maven.google.com'
}
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"
}
2015-12-06 23:25:18 -07:00
}
}