37 lines
1.3 KiB
Groovy
Raw Normal View History

2017-01-11 12:51:45 +00:00
apply plugin: 'com.android.library'
2018-07-24 13:19:45 -07:00
def safeExtGet(prop, fallback) {
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
}
2017-01-11 12:51:45 +00:00
android {
2018-07-24 13:19:45 -07:00
compileSdkVersion safeExtGet('compileSdkVersion', 27)
buildToolsVersion safeExtGet('buildToolsVersion', '27.0.3')
2017-01-11 12:51:45 +00:00
defaultConfig {
2018-07-24 13:19:45 -07:00
minSdkVersion safeExtGet('minSdkVersion', 16)
targetSdkVersion safeExtGet('targetSdkVersion', 27)
versionCode 1
versionName "1.0"
2017-01-11 12:51:45 +00:00
}
}
dependencies {
//noinspection GradleDynamicVersion
2018-09-06 09:44:27 +01:00
compileOnly "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
2018-10-13 19:18:13 -07:00
implementation('com.google.android.exoplayer:exoplayer:2.8.4') {
2018-08-07 23:10:03 -07:00
exclude group: 'com.android.support'
}
// All support libs must use the same version
2018-09-06 09:44:27 +01:00
implementation "com.android.support:support-annotations:${safeExtGet('supportLibVersion', '+')}"
implementation "com.android.support:support-compat:${safeExtGet('supportLibVersion', '+')}"
implementation "com.android.support:support-media-compat:${safeExtGet('supportLibVersion', '+')}"
2018-08-07 23:10:03 -07:00
2018-10-13 19:18:13 -07:00
implementation('com.google.android.exoplayer:extension-okhttp:2.8.4') {
2017-01-11 12:51:45 +00:00
exclude group: 'com.squareup.okhttp3', module: 'okhttp'
}
2018-09-06 09:44:27 +01:00
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
2018-08-07 23:10:03 -07:00
2017-01-11 12:51:45 +00:00
}