Xcode Macos 10.12

Sep 25, 2021 Xcode 11.5 supports developing apps for iOS 13.5, iPadOS 13.5, tvOS 13.4, watchOS 6.2, and macOS Catalina 10.15.4. Ny times app for macos. Supports the Exposure Notification API. Xcode For Macos 10.13; Xcode For Os X 10.12.6; Xcode For Mac Os 10.12; Xcode For Macos 10.13. I simply want to use network link conditioner on my iphone. This video shows how to set up Simple DirectMedia Layer(SDL) libraries on a Macbook without using IDE like Xcode.The program is compilable from terminal.

What This Guide Covers #

This guide explains what packages, tools and settings are available in theTravis macOS CI environment (often referred to as the “CI environment”).

Overview #

Travis CI runs builds in virtual machines that are snapshotted before each buildand rolled back at the end of it. This offers a number of benefits:

  • Host OS is not affected by test suites
  • No state persists between runs
  • Passwordless sudo is available
  • It is possible for test suites to install various services via brewand then customize the configuration of those services at thebeginning of each build.

The environment available to test suites is known as the Travis CIenvironment.

Using macOS #

To use our macOS build infrastructure, add the following to your .travis.yml:

Travis CI also supports the Ubuntu Linux Environment, Windows Environment and FreeBSD Environment.

macOS Version #

Travis CI uses macOS 10.13 and Xcode 9.4.1 by default. You can use another version of macOS (and Xcode) by specifying the corresponding osx_image key from the following table:

osx_image valueXcode versionXcode build versionmacOS versionJDK
osx_image: xcode12.5Xcode 12.512E262macOS 11.316.0.1
osx_image: xcode12.4Xcode 12.412D4emacOS 11.2.115.0.1
osx_image: xcode12.3Xcode 12.312C33macOS 11.115.0.1
osx_image: xcode12.2Xcode 12.212B5018imacOS 10.15.714.0.2
osx_image: xcode12uXcode 12.012A8161kmacOS 10.15.514.0.1
osx_image: xcode12Xcode 12.0.112A7300macOS 10.15.714.0.2
osx_image: xcode11.6Xcode 11.611E708macOS 10.15.514.0.2
osx_image: xcode11.5Xcode 11.511E608cmacOS 10.15.414.0.1
osx_image: xcode11.4Xcode 11.4.111E503amacOS 10.15.414.0.1
osx_image: xcode11.3Xcode 11.3.111C505macOS 10.14.614
osx_image: xcode11.2Xcode 11.2.111B500macOS 10.14.614
osx_image: xcode11.1Xcode 11.111A1027macOS 10.14.614
osx_image: xcode11Xcode 11.011A420amacOS 10.14.614
osx_image: xcode10.3Xcode 10.318E226macOS 10.14.413.0.1
osx_image: xcode10.2Xcode 10.2.110E1001macOS 10.1413.0.1
osx_image: xcode10.1Xcode 10.110B61macOS 10.1313.0.1
osx_image: xcode10Xcode 10.010A255macOS 10.1313.0.1
osx_image: xcode9.4DefaultXcode 9.4.19F2000macOS 10.1313.0.1
osx_image: xcode9.3Xcode 9.39E145macOS 10.131.8.0_112-b16
osx_image: xcode9.2Xcode 9.29C40bmacOS 10.121.8.0_112-b16
osx_image: xcode9.1Xcode 9.19B55macOS 10.121.8.0_112-b16
osx_image: xcode9Xcode 9.09A235macOS 10.121.8.0_112-b16
osx_image: xcode8.3Xcode 8.3.38E3004bmacOS 10.121.8.0_112-b16
osx_image: xcode8Xcode 8.08A218amacOS 10.111.8.0_92-b14
osx_image: xcode7.3Xcode 7.3.17D1014macOS 10.111.8.0_92-b14

Homebrew #

Homebrew is installed and updated every time the virtual machines are updated.

The Travis Homebrew addon is the simplest, fastest and most reliable way to install dependencies.

The Homebrew addon correctly handles up-to-date, outdated, and missing packages. Manual Homebrew dependency scripts are error-prone, and we recommend against using them.

The Homebrew addon uses the Homebrew database on the build image by default, but can be configured to run brew update if needed.

File System #

VMs running macOS 10.13 use HFS+, VMs running macOS 10.14 and newer use APFS.

JDK and macOS #

Note the pre-installed JDK version (OracleJDK) for each image in the table below.While Mac jobs can test against multiple JDK versions using the jdk key,macOS images up to xcode9.3 can only switch up to Java 8, and images xcode9.4 and later can switch to Java 10 (if pre-installed) and later.In practical terms, if your Mac build requires Java 8 and below, use xcode9.3 (or below); if your build requires Java 10and later, use xcode9.4 (or later).

osx_image valueXcode versionmacOS versionJDK
osx_image: xcode12.5Xcode 12.5macOS 11.316.0.1
osx_image: xcode12.4Xcode 12.4macOS 11.2.115.0.1
osx_image: xcode12.3Xcode 12.3macOS 11.115.0.1
osx_image: xcode12.2Xcode 12.2macOS 10.15.714.0.2
osx_image: xcode12uXcode 12.0macOS 10.15.514.0.1
osx_image: xcode12Xcode 12.0.1macOS 10.15.714.0.2
osx_image: xcode11.6Xcode 11.6macOS 10.15.514.0.2
osx_image: xcode11.5Xcode 11.5macOS 10.15.414.0.1
osx_image: xcode11.4Xcode 11.4.1macOS 10.15.414.0.1
osx_image: xcode11.3Xcode 11.3.1macOS 10.14.614
osx_image: xcode11.2Xcode 11.2.1macOS 10.14.614
osx_image: xcode11.1Xcode 11.1macOS 10.14.614
osx_image: xcode11Xcode 11.0macOS 10.14.614
osx_image: xcode10.3Xcode 10.3macOS 10.14.413.0.1
osx_image: xcode10.2Xcode 10.2.1macOS 10.1413.0.1
osx_image: xcode10.1Xcode 10.1macOS 10.1313.0.1
osx_image: xcode10Xcode 10.0macOS 10.1313.0.1
osx_image: xcode9.4DefaultXcode 9.4.1macOS 10.1313.0.1
osx_image: xcode9.3Xcode 9.3macOS 10.131.8.0_112-b16
osx_image: xcode9.2Xcode 9.2macOS 10.121.8.0_112-b16
osx_image: xcode9.1Xcode 9.1macOS 10.121.8.0_112-b16
osx_image: xcode9Xcode 9.0macOS 10.121.8.0_112-b16
osx_image: xcode8.3Xcode 8.3.3macOS 10.121.8.0_112-b16
osx_image: xcode8Xcode 8.0macOS 10.111.8.0_92-b14
osx_image: xcode7.3Xcode 7.3.1macOS 10.111.8.0_92-b14

Compilers and Build toolchain #

  • automake
  • clang
  • cmake
  • gcc
  • maven
  • mercurial
  • pkg-config
  • wget
  • xctool

Languages #

  • C
  • C++
  • Go
  • Java
  • Nodejs
  • Python
  • Ruby

Runtimes #

Every worker has at least one version of Go, Java, Python, Ruby and NodeJS to accommodateprojects that may need one of those runtimes during the build.

Ruby versions/implementations #

Default macOS Ruby (depends on macOS version) – You need to use sudo to install gems with this Ruby and you can also use the pre-compiled Ruby binaries we made available.

Rubies are built using RVM that is installed per-user.

Gems in the global gem set #

  • bundler
  • rake
  • cocoapods

Python related tools #

  • pyenv (via homebrew)
  • virtualenv (via pip)
  • numpy (via pip)
  • scipy (via pip)
  • tox (via pip)

Xcode version #

Xcode 9.4.1 is installed with all available simulators and SDKs.Command Line Tools are also installed.

Xcode 12.5 #

Xcode 12.5 is available by adding osx_image: xcode12.5 to your .travis.yml.

Our Xcode 12.5 images have the following SDKs preinstalled:

  • iphoneos14.5

  • iphonesimulator14.5

  • macosx11.3

  • appletvos14.5

  • appletvsimulator14.5

  • watchos7.4

  • watchsimulator7.4

The Xcode 12.5 image also comes with the following simulators:

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.0

  • iOS 13.1

  • iOS 13.2

  • iOS 13.3

  • iOS 13.4

  • iOS 13.5

  • iOS 13.6

  • iOS 13.7

  • iOS 14.0

  • iOS 14.1

  • iOS 14.2

  • iOS 14.3

  • iOS 14.4

  • iOS 14.5

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.0

  • tvOS 13.2

  • tvOS 13.3

  • tvOS 13.4

  • tvOS 14.0

  • tvOS 14.2

  • tvOS 14.3

  • tvOS 14.4

  • tvOS 14.5

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.0

  • watchOS 6.1

  • watchOS 6.2

  • watchOS 7.0

  • watchOS 7.1

  • watchOS 7.2

  • watchOS 7.4

Xcode 12.4 #

Xcode 12.4 is available by adding osx_image: xcode12.4 to your .travis.yml.

Our Xcode 12.4 images have the following SDKs preinstalled:

  • iphoneos14.4

  • iphonesimulator14.4

  • driverkit.macosx20.2

  • macosx11.1

  • appletvos14.3

  • appletvsimulator14.3

  • watchos7.2

  • watchsimulator7.2

The Xcode 12.4 image also comes with the following simulators:

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.0

  • iOS 13.1

  • iOS 13.2

  • iOS 13.3

  • iOS 13.4

  • iOS 13.5

  • iOS 13.6

  • iOS 13.7

  • iOS 14.0

  • iOS 14.1

  • iOS 14.2

  • iOS 14.3

  • iOS 14.4

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.0

  • tvOS 13.2

  • tvOS 13.3

  • tvOS 13.4

  • tvOS 14.0

  • tvOS 14.2

  • tvOS 14.3

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.0

  • watchOS 6.1

  • watchOS 6.2

  • watchOS 7.0

  • watchOS 7.1

  • watchOS 7.2

Xcode 12.3 #

Xcode 12.3 is available by adding osx_image: xcode12.3 to your .travis.yml.

Our Xcode 12.3 images have the following SDKs preinstalled:

  • iphoneos14.3

  • iphonesimulator14.3

  • macosx11.1

  • appletvos14.3

  • appletvsimulator14.3

  • watchos7.2

  • watchsimulator7.2

The Xcode 12.3 image also comes with the following simulators:

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.0

  • iOS 13.1

  • iOS 13.2

  • iOS 13.3

  • iOS 13.4

  • iOS 13.5

  • iOS 13.6

  • iOS 13.7

  • iOS 14.0

  • iOS 14.1

  • iOS 14.2

  • iOS 14.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.0

  • tvOS 13.2

  • tvOS 13.3

  • tvOS 13.4

  • tvOS 14.0

  • tvOS 14.2

  • tvOS 14.3

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.0

  • watchOS 6.1

  • watchOS 6.2

  • watchOS 7.0

  • watchOS 7.1

  • watchOS 7.2

Xcode 12.2 #

Xcode 12.2 is available by adding osx_image: xcode12.2 to your .travis.yml.

Our Xcode 12.2 images have the following SDKs preinstalled:

  • iphoneos14.2

  • iphonesimulator14.2

  • macosx11.0

  • appletvos14.2

  • appletvsimulator14.2

  • watchos7.1

  • watchsimulator7.1

The Xcode 12.2 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.0

  • iOS 13.1

  • iOS 13.2

  • iOS 13.3

  • iOS 13.4

  • iOS 13.5

  • iOS 14.0

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.0

  • tvOS 13.2

  • tvOS 13.3

  • tvOS 13.4

  • tvOS 14.0

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.1

  • watchOS 6.2

  • watchOS 7.0

Xcode 12 (Universal) #

Xcode 12.0 is available by adding osx_image: xcode12u to your .travis.yml.

Our Xcode 12.0 images have the following SDKs preinstalled:

  • iphoneos14.0

  • iphonesimulator14.0

  • driverkit.macosx20.0

  • macosx11.0

The Xcode 12.0 image also comes with the following simulators:

  • iOS 14.0

Xcode 12 #

Xcode 12.0.1 is available by adding osx_image: xcode12 to your .travis.yml.

Our Xcode 12.0.1 images have the following SDKs preinstalled:

  • iphoneos14.0

  • iphonesimulator14.0

  • macosx10.15

  • appletvos14.0

  • appletvsimulator14.0

  • watchos7

  • watchsimulator7

The Xcode 12.0.1 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.0

  • iOS 13.1

  • iOS 13.2

  • iOS 13.3

  • iOS 13.4

  • iOS 13.5

  • iOS 14.0

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.0

  • tvOS 13.2

  • tvOS 13.3

  • tvOS 13.4

  • tvOS 14.0

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.1

  • watchOS 6.2

  • watchOS 7.0

Xcode 11.6 #

Xcode 11.6 is available by adding osx_image: xcode11.6 to your .travis.yml.

Macos

Our Xcode 11.6 images have the following SDKs preinstalled:

  • iphoneos13.6

  • iphonesimulator13.6

  • macosx10.15

  • appletvos13.4

  • appletvsimulator13.4

  • watchos6.2

  • watchsimulator6.2

The Xcode 11.6 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.2

  • iOS 13.3

  • iOS 13.4

  • iOS 13.5

  • iOS 13.6

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.2

  • tvOS 13.3

  • tvOS 13.4

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.1

  • watchOS 6.2

Xcode 11.5 #

Xcode 11.5 is available by adding osx_image: xcode11.5 to your .travis.yml.

Our Xcode 11.5 images have the following SDKs preinstalled:

  • iphoneos13.5

  • iphonesimulator13.5

  • macosx10.15

  • appletvos13.4

  • appletvsimulator13.4

  • watchos6.2

  • watchsimulator6.2

The Xcode 11.5 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.2

  • iOS 13.3

  • iOS 13.4

  • iOS 13.5

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.2

  • tvOS 13.3

  • tvOS 13.4

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.1

  • watchOS 6.2

Xcode 11.4.1 #

Xcode 11.4.1 is available by adding osx_image: xcode11.4 to your .travis.yml.

Our Xcode 11.4.1 images have the following SDKs preinstalled:

  • iphoneos13.4

  • iphonesimulator13.4

  • macosx10.15

  • appletvos13.4

  • appletvsimulator13.4

  • watchos6.2

  • watchsimulator6.2

The Xcode 11.4.1 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.2

  • iOS 13.3

  • iOS 13.4

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.2

  • tvOS 13.3

  • tvOS 13.4

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.1

  • watchOS 6.2

Xcode 11.3.1 #

Xcode 11.3.1 is available by adding osx_image: xcode11.3 to your .travis.yml.

Our Xcode 11.3.1 images have the following SDKs preinstalled:

  • iphoneos13.2

  • iphonesimulator13.2

  • macosx10.15

  • appletvos13.2

  • appletvsimulator13.2

  • watchos6.1

  • watchsimulator6.1

The Xcode 11.3.1 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.2

  • iOS 13.3

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.2

  • tvOS 13.3

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.1

Xcode 11.2.1 #

Xcode 11.2.1 is available by adding osx_image: xcode11.2 to your .travis.yml.

Our Xcode 11.2.1 images have the following SDKs preinstalled:

  • iphoneos13.2

  • iphonesimulator13.2

  • macosx10.15

  • appletvos13.2

  • appletvsimulator13.2

  • watchos6.1

  • watchsimulator6.1

The Xcode 11.2.1 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • iOS 13.2

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • tvOS 13.2

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

  • watchOS 6.1

Xcode 11.1 #

Xcode 11.1 is available by adding osx_image: xcode11.1 to your .travis.yml.

Our Xcode 11.1 images have the following SDKs preinstalled:

  • iphoneos13.1

  • iphonesimulator13.1

  • macosx10.15

  • appletvos13.0

  • appletvsimulator13.0

  • watchos6.0

  • watchsimulator6.0

The Xcode 11.1 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 13.0

  • iOS 13.1

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 13.0

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 6.0

Xcode 11.0 #

Xcode 11.0 is available by adding osx_image: xcode11 to your .travis.yml.

Our Xcode 11.0 images have the following SDKs preinstalled:

  • iphoneos13.0

  • iphonesimulator13.0

  • macosx10.15

  • appletvos13.0

  • appletvsimulator13.0

  • watchos6.0

  • watchsimulator6.0

The Xcode 11.0 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 13.0

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 13.0

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 6.0

Xcode 10.3 #

Xcode 10.3 is available by adding osx_image: xcode10.3 to your .travis.yml.

Our Xcode 10.3 images have the following SDKs preinstalled:

  • macosx10.14

  • iphoneos12.4

  • iphonesimulator12.4

  • appletvos12.4

  • appletvsimulator12.4

  • watchos5.3

  • watchsimulator5.3

The Xcode 10.3 image also comes with the following simulators:

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • iOS 12.4

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • tvOS 12.4

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

  • watchOS 5.3

Xcode 10.2 #

Xcode 10.2.1 is available by adding osx_image: xcode10.2 to your .travis.yml.

Our Xcode 10.2.1 images have the following SDKs preinstalled:

  • macosx10.14

  • iphoneos12.2

  • iphonesimulator12.2

  • appletvos12.2

  • appletvsimulator12.2

  • watchos5.2

  • watchsimulator5.2

The Xcode 10.2.1 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • iOS 10.0

  • iOS 10.1

  • iOS 10.2

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • iOS 12.2

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

  • tvOS 10.0

  • tvOS 10.1

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • tvOS 12.2

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

  • watchOS 5.2

Xcode 10.1 #

Xcode 10.1 is available by adding osx_image: xcode10.1 to your .travis.yml.

Our Xcode 10.1 images have the following SDKs preinstalled:

  • macosx10.14

  • iphoneos12.1

  • iphonesimulator12.1

  • appletvos12.1

  • appletvsimulator12.1

  • watchos5.1

  • watchsimulator5.1

The Xcode 10.1 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • iOS 10.0

  • iOS 10.1

  • iOS 10.2

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • iOS 12.1

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

  • tvOS 10.0

  • tvOS 10.1

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • tvOS 12.1

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

  • watchOS 5.1

Xcode 10.0 #

Xcode 10.0 is available by adding osx_image: xcode10 to your .travis.yml.

Our Xcode 10.0 images have the following SDKs preinstalled:

  • macosx10.14

  • iphoneos12.0

  • iphonesimulator12.0

  • appletvos12.0

  • appletvsimulator12.0

  • watchos5.0

  • watchsimulator5.0

The Xcode 10.0 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • iOS 10.0

  • iOS 10.1

  • iOS 10.2

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • iOS 12.0

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

  • tvOS 10.0

  • tvOS 10.1

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • tvOS 12.0

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 5.0

Xcode 9.4 #

Xcode 9.4.1 is available by adding osx_image: xcode9.4 to your .travis.yml.

Default when no other osx_image: is specified

Our Xcode 9.4.1 images have the following SDKs preinstalled:

  • macosx10.13

  • iphoneos11.4

  • iphonesimulator11.4

  • appletvos11.4

  • appletvsimulator11.4

  • watchos4.3

  • watchsimulator4.3

Macos

The Xcode 9.4.1 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • iOS 10.0

  • iOS 10.1

  • iOS 10.2

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • iOS 11.4

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

  • tvOS 10.0

  • tvOS 10.1

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • tvOS 11.4

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 4.3

Xcode 9.3 #

Xcode 9.3 is available by adding osx_image: xcode9.3 to your .travis.yml.

Our Xcode 9.3 images have the following SDKs preinstalled:

  • macosx10.13

  • iphoneos11.3

  • iphonesimulator11.3

  • appletvos11.2

  • appletvsimulator11.3

  • watchos4.3

  • watchsimulator4.3

The Xcode 9.3 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • iOS 10.0

  • iOS 10.1

  • iOS 10.2

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • iOS 11.3

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

  • tvOS 10.0

  • tvOS 10.1

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • tvOS 11.3

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

  • watchOS 4.3

Xcode 9.2 #

Xcode 9.2 is available by adding osx_image: xcode9.2 to your .travis.yml.

Our Xcode 9.2 images have the following SDKs preinstalled:

  • macosx10.13

  • iphoneos11.2

  • iphonesimulator11.2

  • appletvos11.2

  • appletvsimulator11.2

  • watchos4.2

  • watchsimulator4.2

The Xcode 9.2 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • iOS 10.0

  • iOS 10.1

  • iOS 10.2

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • iOS 11.2

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

  • tvOS 10.0

  • tvOS 10.1

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • tvOS 11.2

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

  • watchOS 4.2

Xcode 9.1 #

Xcode 9.1 is available by adding osx_image: xcode9.1 to your .travis.yml.

Our Xcode 9.1 images have the following SDKs preinstalled:

  • macosx10.13

  • iphoneos11.1

  • iphonesimulator11.1

  • appletvos11.1

  • appletvsimulator11.1

  • watchos4.1

  • watchsimulator4.1

The Xcode 9.1 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • iOS 10.0

  • iOS 10.1

  • iOS 10.2

  • iOS 10.3

  • iOS 11.0

  • iOS 11.1

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

  • tvOS 10.0

  • tvOS 10.1

  • tvOS 10.2

  • tvOS 11.0

  • tvOS 11.1

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • watchOS 3.2

  • watchOS 4.0

  • watchOS 4.1

Xcode 9.0 #

Xcode 9.0 is available by adding osx_image: xcode9 to your .travis.yml.

Our Xcode 9.0 images have the following SDKs preinstalled:

  • macosx10.13

  • iphoneos11.0

  • iphonesimulator11.0

  • appletvos11.0

  • appletvsimulator11.0

  • watchos4.0

  • watchsimulator4.0

The Xcode 9.0 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • iOS 10.0

  • iOS 10.1

  • iOS 10.2

  • iOS 10.3

  • iOS 11.0

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

  • tvOS 10.0

  • tvOS 10.1

  • tvOS 10.2

  • tvOS 11.0

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • watchOS 3.2

  • watchOS 4.0

Xcode 8.3 #

Xcode 8.3.3 is available by adding osx_image: xcode8.3 to your .travis.yml.

Our Xcode 8.3.3 images have the following SDKs preinstalled:

  • macosx10.12

  • iphoneos10.3

  • iphonesimulator10.3

  • appletvos10.2

  • appletvsimulator10.2

  • watchos3.2

  • watchsimulator3.2

The Xcode 8.3.3 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • iOS 10.0

  • iOS 10.1

  • iOS 10.2

  • iOS 10.3

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

  • tvOS 10.0

  • tvOS 10.1

  • tvOS 10.2

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • watchOS 3.2

Xcode 8 #

Xcode 8.0 is available by adding osx_image: xcode8 to your .travis.yml.

Our Xcode 8.0 images have the following SDKs preinstalled:

  • macosx10.11

  • iphoneos10.0

  • iphonesimulator10.0

  • appletvos10.0

  • appletvsimulator10.0

  • watchos3.0

  • watchsimulator3.0

  • iphoneos9.3

  • iphonesimulator9.3

  • appletvos9.2

  • appletvsimulator9.2

  • watchos2.2

  • watchsimulator2.2

The Xcode 8.0 image also comes with the following simulators:

  • iOS 10.0

  • watchOS 3.0

  • tvOS 10.0

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

Xcode 7.3 #

Xcode 7.3.1 is available by adding osx_image: xcode7.3 to your .travis.yml.

Our Xcode 7.3.1 images have the following SDKs preinstalled:

  • macosx10.11

  • iphoneos9.3

  • iphonesimulator9.3

  • appletvos9.2

  • appletvsimulator9.2

  • watchos2.2

  • watchsimulator2.2

The Xcode 7.3.1 image also comes with the following simulators:

  • iOS 8.1

  • iOS 8.2

  • iOS 8.3

  • iOS 8.4

  • iOS 9.0

  • iOS 9.1

  • iOS 9.2

  • iOS 9.3

  • watchOS 2.0

  • watchOS 2.1

  • watchOS 2.2

  • tvOS 9.0

  • tvOS 9.1

  • tvOS 9.2

RSS Feed for this tag 36 applications totalLast updated: Sep 26th 2021, 15:43 GMT

Dash 6.0.8

Powerful and user-friendly documentation viewer and browser that also comes with a snippet manager...

Xclean 0.3.2

Easily clear Xcode derived data and module cache from the menu bar, and even configure the app to ...

macOS 10.12 or later (Universal Binary)

SimPholders 3.0.12

Quickly access recently modified Xcode apps and iOS, watchOS, and tvOS simulations with minimal ef...

Touch Bar Simulator 4.2.0

Places the Touch Bar panel on your desktop so you can see how the menu changes depending on the se...

XLIFFy 1.0.2

Minimalist XLIFF editor that offers you the possibility to visualize the files content and quickly...

OS X 10.11 or later (Intel only)

Faux Pas 1.7.2

Analyze your Xcode projects to find and eliminate bugs and be notified about other potential issue...

XCleaner 1.0

Enables developers to effortlessly and quickly clear out multiple folders where Xcode stores outpu...

Sooey 1.2 Build 19

Translation tool that helps you localize your iOS or macOS projects to more than 90 different lang...

WabbitCode 2.2

z80 IDE that integrates with the WabbitEmu project and provides support for running and debugging ...

Swiftly-Clean 2.0.2

Create and apply custom configuration files and adjust the Xcode code style preferences to use you...

Alcatraz 1.2.1

Xcode plug-in manager and installer

pokemongo-webspoof 1.2.1

Effortlessly Spoof your GPS location for the iOS Pokémon Go game in order to play from the comfort...

Deco IDE 1.1.2

Development environment for React Native applications that can connect to Xcode and allow you to p...

WebShell 0.2.0

Bundle web apps to standard OS X applications with this webview shell, enabling you to access cert...

Keka

Powerful yet easy to use file archiver for macOS based on a 7za port that enables you to both compress and extract files with a drag and drop

Rectangle

Refine window management on macOS using dedicated snap areas and customizable keyboard shortcuts to resize windows and move them instantly

The Unarchiver

Xcode 12.5.1 Download

Powerful and very fast archive expander designed to decompress Zip, Rar, 7-zip,Tar-GZip, Tar-BZip2, StuffIt, LhA and many other archive formats

Microsoft Remote Desktop

Offers you the possibility to quickly connect to a Windows-based computer in order to work with its programs and files, access data and more

Keysmith

Create keyboard shortcuts for simple or highly complex strings of actions, on your desktop and in various applications, by just recording yourself performing the steps

Mimestream

Native macOS Gmail client that uses Google's API in order to provide you with the Gmail features you know and love, all in an efficient Swift-based app

VLC Media Player

Multi-platform multimedia player that helps its users play, convert and stream most popular video and formats via a simple and intuitive user interface

Filmora

Versatile video editor suitable for both beginners and professional content creators, with plenty of advanced features and an intuitive design

macOS

A new macOS that welcomes the arrival of Apple Silicon and offers better integration with mobile platforms, along with fresh visuals and a host of other features

Big Sur Cache Cleaner

User-friendly and intuitive macOS application that makes system maintenance, optimization, tuning and cleaning a lot simpler and faster

AppCleaner

Simple to use macOS utility designed to help you to quickly and properly uninstall any application with a just a flick of your mouse

Alfred

An easy to use productivity application for the macOS that helps you save time by speeding up your searches, on the web or on your Mac

Amphetamine

Straightforward app that integrates itself into the OS X status bar to give you quick access and control over your Mac's energy saver settings

Hidden Bar

Hide menu bar items and avoid clutter without removing the icons altogether, using this impressively straightforward and lightweight app

Filmora
  • Filmora
  • macOS
  • Big Sur Cache Cleaner
  • AppCleaner
  • Alfred
  • Amphetamine
  • Hidden Bar
  • Aerial
  • Keka
  • Rectangle
  • The Unarchiver
  • Microsoft Remote Desktop
  • Keysmith
  • Mimestream
  • VLC Media Player
essentials

xctool 0.3.1

Facebook's open source and free replacement for Apple's xcodebuild

Spark Inspector 1.5.1

Debugging tool for iOS Xcode projects that enables you to view the app's interface in 3D mode, and...

Xcode Macos 10.12.6

BBUncrustifyPlugin 2.1.4

Xcode plug-in to uncrustify source code

Port Authority 6.2

A GUI for the MacPorts Unix software management system

Xcoverage 2.0.2

Free utility that makes it easy to work with code coverage reports

Vocabulist 2.3

A handy OS X application designed to help app developers translate their OS X or iOS projects and ...

Mac OS X 10.7 or later (Intel only)

LLDB-QuickLook 0.1.3

Free and simple to use tool that makes it very easy to open images, views and text in Quick Look b...

Download Xcode Macos 10.12

Mac OS X

tin 2.2.1

Xcode Ide Download

Threaded NNTP & spool-based Usenet newsreader.

Code Pilot 1.2.4 / 2.0 Beta 15

Easy project navigation for Xcode

TestFlight 1.0 Build 313 Beta

Easily distribute beta versions to testers.

Mac OS X 10.7 or later (Intel only)

CocoaPods for Xcode 1.0

Free and open source Xcode plugin desgiend to make it as easy as possible to access the most commo...

Mac OS X

Monokai Xcode Theme

Xcode Macos 10.13

A free color theme for Xcode that comes with a dark brown background that makes it easier on the e...

Mac OS X

Relativity Server 7.0.69.1081

Deploy servers for your OS X / iOS apps without a DA/Delphi or DA/.NET license

Mac OS X

New Roman Times

Proportional theme for Xcode

Mac OS X

Cobalt 1.0

Free color theme for Xcode

Mac OS X

Dash Plugin for Xcode

Integrates the Dash documentation viewer app in Xcode

Mac OS X 10.8 or later (Intel only)