mirror of
https://github.com/typeable/obelisk.git
synced 2024-11-20 10:50:08 +03:00
ios: Bump to sdk 13.2
This commit is contained in:
parent
8e622e42ea
commit
9617ae2ba1
@ -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
|
||||
|
@ -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`
|
||||
|
||||
|
@ -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 ]
|
||||
|
@ -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;
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user