[#4651] Set minimum iOS and Android versions.
iOS: 11.0 is the minimal requirement, phone-only application. Android: 6.0 (API level 23). [Android API levels table](https://developer.android.com/guide/topics/manifest/uses-sdk-element#ApiLevels)
This commit is contained in:
parent
125f61b19e
commit
c5e078b9d7
|
@ -121,8 +121,8 @@ android {
|
|||
|
||||
defaultConfig {
|
||||
applicationId "im.status.ethereum"
|
||||
minSdkVersion 18
|
||||
targetSdkVersion 26
|
||||
minSdkVersion 23
|
||||
targetSdkVersion 27
|
||||
multiDexEnabled true
|
||||
versionCode getVersionCode()
|
||||
versionName getVersionName()
|
||||
|
|
|
@ -2076,7 +2076,7 @@
|
|||
"$(SRCROOT)/../node_modules/react-native-securerandom/ios",
|
||||
);
|
||||
INFOPLIST_FILE = StatusIm/Info.plist;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
LIBRARY_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
|
@ -2089,6 +2089,7 @@
|
|||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = im.status.ethereum;
|
||||
PRODUCT_NAME = StatusIm;
|
||||
TARGETED_DEVICE_FAMILY = 1;
|
||||
VALID_ARCHS = "arm64 armv7 armv7s";
|
||||
};
|
||||
name = Debug;
|
||||
|
@ -2137,7 +2138,7 @@
|
|||
"$(SRCROOT)/../node_modules/react-native-securerandom/ios",
|
||||
);
|
||||
INFOPLIST_FILE = StatusIm/Info.plist;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
LIBRARY_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
|
@ -2150,6 +2151,7 @@
|
|||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = im.status.ethereum;
|
||||
PRODUCT_NAME = StatusIm;
|
||||
TARGETED_DEVICE_FAMILY = 1;
|
||||
VALID_ARCHS = "armv7 armv7s arm64";
|
||||
};
|
||||
name = Release;
|
||||
|
|
Loading…
Reference in New Issue