diff --git a/android/build.gradle b/android/build.gradle index 5baea0df..1797d113 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,12 +1,20 @@ apply plugin: 'com.android.library' +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 + android { - compileSdkVersion 23 - buildToolsVersion "23.0.1" + compileSdkVersion _compileSdkVersion + buildToolsVersion _buildToolsVersion defaultConfig { - minSdkVersion 16 - targetSdkVersion 23 + minSdkVersion _minSdkVersion + targetSdkVersion _targetSdkVersion versionCode 1 versionName "1.0" ndk { @@ -16,5 +24,6 @@ android { } dependencies { - compile 'com.facebook.react:react-native:0.12.+' + //noinspection GradleDynamicVersion + implementation "com.facebook.react:react-native:${_reactNativeVersion}" }