forked from AlexanderZaytsev/react-native-i18n
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request AlexanderZaytsev#185 from rayronvictor/master
Using SDK Version variables from root project
- Loading branch information
Showing
1 changed file
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,32 @@ | ||
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 25 | ||
buildToolsVersion "25.0.2" | ||
compileSdkVersion _compileSdkVersion | ||
buildToolsVersion _buildToolsVersion | ||
|
||
defaultConfig { | ||
minSdkVersion 16 | ||
targetSdkVersion 22 | ||
minSdkVersion _minSdkVersion | ||
targetSdkVersion _targetSdkVersion | ||
versionCode 1 | ||
versionName "1.0" | ||
ndk { | ||
abiFilters "armeabi-v7a", "x86" | ||
} | ||
} | ||
lintOptions { | ||
abortOnError false | ||
} | ||
} | ||
|
||
dependencies { | ||
compile 'com.facebook.react:react-native:+' | ||
} | ||
//noinspection GradleDynamicVersion | ||
compile "com.facebook.react:react-native:${_reactNativeVersion}" | ||
} |