Update default iOS deployment to 6.0 and remove unnecessary CFBundleIcon data now that we use asset catalogs for icons
This commit is contained in:
@@ -8,12 +8,6 @@
|
|||||||
<string>::APP_TITLE::</string>
|
<string>::APP_TITLE::</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>${EXECUTABLE_NAME}</string>
|
<string>${EXECUTABLE_NAME}</string>
|
||||||
<key>CFBundleIconFile</key>
|
|
||||||
<string>Icon.png</string>
|
|
||||||
<key>CFBundleIcons</key>
|
|
||||||
<dict/>
|
|
||||||
<key>CFBundleIcons~ipad</key>
|
|
||||||
<dict/>
|
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>::APP_PACKAGE::</string>
|
<string>::APP_PACKAGE::</string>
|
||||||
<key>CFBundleInfoDictionaryVersion</key>
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
|||||||
@@ -8,12 +8,6 @@
|
|||||||
<string>::APP_TITLE::</string>
|
<string>::APP_TITLE::</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
<string>${EXECUTABLE_NAME}</string>
|
<string>${EXECUTABLE_NAME}</string>
|
||||||
<key>CFBundleIconFile</key>
|
|
||||||
<string>Icon.png</string>
|
|
||||||
<key>CFBundleIcons</key>
|
|
||||||
<dict/>
|
|
||||||
<key>CFBundleIcons~ipad</key>
|
|
||||||
<dict/>
|
|
||||||
<key>CFBundleIdentifier</key>
|
<key>CFBundleIdentifier</key>
|
||||||
<string>::APP_PACKAGE::</string>
|
<string>::APP_PACKAGE::</string>
|
||||||
<key>CFBundleInfoDictionaryVersion</key>
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
|||||||
@@ -154,7 +154,7 @@ class IOSPlatform extends PlatformTarget {
|
|||||||
|
|
||||||
if (project.config.getString ("ios.device", "universal") == "universal" || project.config.getString ("ios.device") == "iphone") {
|
if (project.config.getString ("ios.device", "universal") == "universal" || project.config.getString ("ios.device") == "iphone") {
|
||||||
|
|
||||||
if (project.config.getInt ("ios.deployment", 5) < 5) {
|
if (project.config.getInt ("ios.deployment", 6) < 5) {
|
||||||
|
|
||||||
ArrayHelper.addUnique (architectures, Architecture.ARMV6);
|
ArrayHelper.addUnique (architectures, Architecture.ARMV6);
|
||||||
|
|
||||||
@@ -197,7 +197,7 @@ class IOSPlatform extends PlatformTarget {
|
|||||||
context.ARMV7S = armv7s;
|
context.ARMV7S = armv7s;
|
||||||
context.ARM64 = arm64;
|
context.ARM64 = arm64;
|
||||||
context.TARGET_DEVICES = switch (project.config.getString ("ios.device", "universal")) { case "iphone": "1"; case "ipad": "2"; default: "1,2"; }
|
context.TARGET_DEVICES = switch (project.config.getString ("ios.device", "universal")) { case "iphone": "1"; case "ipad": "2"; default: "1,2"; }
|
||||||
context.DEPLOYMENT = project.config.getInt ("ios.deployment", 5);
|
context.DEPLOYMENT = project.config.getInt ("ios.deployment", 6);
|
||||||
|
|
||||||
if (project.config.getString ("ios.compiler") == "llvm" || project.config.getString ("ios.compiler", "clang") == "clang") {
|
if (project.config.getString ("ios.compiler") == "llvm" || project.config.getString ("ios.compiler", "clang") == "clang") {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user