File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ android/build
44android /.idea /
55.DS_Store
66.idea /
7+ react-native-android.md
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22
3+ def DEFAULT_COMPILE_SDK_VERSION = 27
4+ def DEFAULT_BUILD_TOOLS_VERSION = " 27.0.3"
5+ def DEFAULT_TARGET_SDK_VERSION = 27
6+ def DEFAULT_MIN_SDK_VERSION = 16
7+ def DEFAULT_SUPPOR_LIBVERSION = " 27.0.3"
8+
39android {
410// useLibrary 'org.apache.http.legacy'
511
6- compileSdkVersion 26
12+ compileSdkVersion rootProject. hasProperty(' compileSdkVersion' ) ? rootProject. compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
13+
714
815 defaultConfig {
9- minSdkVersion 16
10- targetSdkVersion 26
16+ minSdkVersion rootProject . hasProperty( ' minSdkVersion ' ) ? rootProject . minSdkVersion : DEFAULT_MIN_SDK_VERSION
17+ targetSdkVersion rootProject . hasProperty( ' targetSdkVersion ' ) ? rootProject . targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
1118 versionCode 1
1219 versionName " 1.0"
1320 ndk {
You can’t perform that action at this time.
0 commit comments