2015-10-30 18:43:18 -06:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
2018-04-24 11:51:07 -06:00
|
|
|
def _ext = rootProject.ext
|
|
|
|
|
|
|
|
def _reactNativeVersion = _ext.has('reactNative') ? _ext.reactNative : '+'
|
|
|
|
def _compileSdkVersion = _ext.has('compileSdkVersion') ? _ext.compileSdkVersion : 27
|
|
|
|
def _buildToolsVersion = _ext.has('buildToolsVersion') ? _ext.buildToolsVersion : '27.0.3'
|
|
|
|
def _minSdkVersion = _ext.has('minSdkVersion') ? _ext.minSdkVersion : 16
|
|
|
|
def _targetSdkVersion = _ext.has('targetSdkVersion') ? _ext.targetSdkVersion : 27
|
|
|
|
|
2015-10-30 18:43:18 -06:00
|
|
|
android {
|
2018-04-24 11:51:07 -06:00
|
|
|
compileSdkVersion _compileSdkVersion
|
|
|
|
buildToolsVersion _buildToolsVersion
|
2015-10-30 18:43:18 -06:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-04-24 11:51:07 -06:00
|
|
|
minSdkVersion _minSdkVersion
|
|
|
|
targetSdkVersion _targetSdkVersion
|
2015-10-30 18:43:18 -06:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
ndk {
|
|
|
|
abiFilters "armeabi-v7a", "x86"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-03-21 14:25:46 -06:00
|
|
|
//noinspection GradleDynamicVersion
|
2018-04-24 11:51:07 -06:00
|
|
|
provided "com.facebook.react:react-native:${_reactNativeVersion}"
|
2017-03-21 14:24:46 -06:00
|
|
|
compile 'com.yqritc:android-scalablevideoview:1.0.4'
|
2015-10-30 18:43:18 -06:00
|
|
|
}
|