Commit e3eae91f authored by wind.wang's avatar wind.wang

remove minSdk from manifest

parent 7aaa11b0
...@@ -8,12 +8,12 @@ def enableSeparateBuildPerCPUArchitecture = false ...@@ -8,12 +8,12 @@ def enableSeparateBuildPerCPUArchitecture = false
def enableProguardInReleaseBuilds = false def enableProguardInReleaseBuilds = false
android { android {
compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : 23 compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : 28
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : '27.0.3' buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : '28.0.3'
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 26 targetSdkVersion 28
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
ndk { ndk {
...@@ -40,7 +40,7 @@ android { ...@@ -40,7 +40,7 @@ android {
dependencies { dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs') compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.0.1' compile 'com.android.support:appcompat-v7:28.0.0'
compile 'com.facebook.react:react-native:+' compile 'com.facebook.react:react-native:+'
// From node_moduless // From node_moduless
compile 'com.google.code.gson:gson:2.5' compile 'com.google.code.gson:gson:2.5'
......
...@@ -15,8 +15,7 @@ ...@@ -15,8 +15,7 @@
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" /> <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
<uses-feature android:name="android.hardware.camera.flash" android:required="false" /> <uses-feature android:name="android.hardware.camera.flash" android:required="false" />
<uses-sdk <uses-sdk
android:minSdkVersion="16" android:targetSdkVersion="28" />
android:targetSdkVersion="26" />
<application <application
android:allowBackup="false"> android:allowBackup="false">
......
...@@ -18,5 +18,5 @@ ...@@ -18,5 +18,5 @@
"start": "react-native start", "start": "react-native start",
"test": "jest" "test": "jest"
}, },
"version": "1.2.5" "version": "1.2.6"
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment