ios: Bump to sdk 13.2

This commit is contained in:
Ali Abrar 2020-12-16 20:12:24 -05:00
parent 8e622e42ea
commit 9617ae2ba1
5 changed files with 5 additions and 4 deletions

View File

@ -10,6 +10,7 @@ This project's release branch is `master`. This log is written from the perspect
* reflex-platform [0.7.0.0](https://github.com/reflex-frp/reflex-platform/releases/tag/v0.7.0.0)
* hnix 0.8.0
* [#787](https://github.com/obsidiansystems/obelisk/pull/787): Set `immutable` cache control directive when serving content-addressed static assets
* Use iOS SDK 13.2
## v0.9.0.1

View File

@ -221,7 +221,7 @@ Your account must also belong to an Apple Developer Team, if you want to access
1. Click accept to authorize on both the computer and the iPhone.
##### Xcode
Install Xcode 8.2 (contains iOS SDK 10.2) and open it so that it runs its post install tool setup.
Install Xcode 11.2 (contains iOS SDK 13.2) and open it so that it runs its post install tool setup.
These versions will work out of the box but iOS SDKs prior to 11.3 should also work. You can choose another installed version in `default.nix`

View File

@ -1,6 +1,6 @@
{ self-args ? {
config.android_sdk.accept_license = true;
iosSdkVersion = "10.2";
iosSdkVersion = "13.2";
}
, local-self ? import ./. self-args
, supportedSystems ? [ builtins.currentSystem ]

View File

@ -1,6 +1,6 @@
{ system ? builtins.currentSystem
, profiling ? false
, iosSdkVersion ? "10.2"
, iosSdkVersion ? "13.2"
, config ? {}
, terms ? { # Accepted terms, conditions, and licenses
security.acme.acceptTerms = false;

View File

@ -1,7 +1,7 @@
{ system ? builtins.currentSystem
, obelisk ? import ./.obelisk/impl {
inherit system;
iosSdkVersion = "10.2";
iosSdkVersion = "13.2";
# You must accept the Android Software Development Kit License Agreement at
# https://developer.android.com/studio/terms in order to build Android apps.