The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build UnicodeEmoji, reference 1.3.0 (cf5568), with Swift 6.1 for Android on 29 May 2025 07:29:46 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/rootstrap/UnicodeEmoji.git
Reference: 1.3.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/rootstrap/UnicodeEmoji
 * tag               1.3.0      -> FETCH_HEAD
HEAD is now at cf55686 Merge pull request #4 from rootstrap/update/emoji-15.1
Cloned https://github.com/rootstrap/UnicodeEmoji.git
Revision (git rev-parse @):
cf556865f32b6938bc9c8f2218bc0e1395d74634
SUCCESS checkout https://github.com/rootstrap/UnicodeEmoji.git at 1.3.0
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/rootstrap/UnicodeEmoji.git
https://github.com/rootstrap/UnicodeEmoji.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "UnicodeEmoji",
  "name" : "UnicodeEmoji",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "UnicodeEmoji",
      "targets" : [
        "UnicodeEmoji"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UnicodeEmojiExample",
      "module_type" : "SwiftTarget",
      "name" : "UnicodeEmojiExample",
      "path" : "UnicodeEmojiExample",
      "sources" : [
        "AppDelegate.swift",
        "ViewController.swift"
      ],
      "target_dependencies" : [
        "UnicodeEmoji"
      ],
      "type" : "library"
    },
    {
      "c99name" : "UnicodeEmoji",
      "module_type" : "SwiftTarget",
      "name" : "UnicodeEmoji",
      "path" : "Sources",
      "product_memberships" : [
        "UnicodeEmoji"
      ],
      "sources" : [
        "Emoji.swift",
        "EmojiCollection.swift",
        "EmojiGroup.swift",
        "EmojiLoader.swift",
        "Extensions/CGPoint+UnicodeEmoji.swift",
        "Extensions/UILabel+UnicodeEmoji.swift",
        "Extensions/UIView+UnicodeEmoji.swift",
        "Extensions/UserDefaults+UnicodeEmoji.swift",
        "Views/EmojiVariantsView/EmojiVariantsView.swift",
        "Views/StickerCollectionCell.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/13] Compiling UnicodeEmoji CGPoint+UnicodeEmoji.swift
[5/14] Compiling UnicodeEmoji StickerCollectionCell.swift
[6/14] Compiling UnicodeEmoji EmojiVariantsView.swift
[7/14] Emitting module UnicodeEmoji
/host/spi-builder-workspace/Sources/Emoji.swift:32:24: warning: static property 'genderIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |     public var variants: [Emoji] = []
31 |
32 |     private static var genderIdentifiers = ["2642", "2640"]
   |                        |- warning: static property 'genderIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'genderIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'genderIdentifiers' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     private static var skinToneIdentifiers = ["1F3FB", "1F3FC", "1F3FD", "1F3FE", "1F3FF"]
34 |     private static var joinersAndSelectors = ["200D", "FE0F"]
/host/spi-builder-workspace/Sources/Emoji.swift:33:24: warning: static property 'skinToneIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     private static var genderIdentifiers = ["2642", "2640"]
33 |     private static var skinToneIdentifiers = ["1F3FB", "1F3FC", "1F3FD", "1F3FE", "1F3FF"]
   |                        |- warning: static property 'skinToneIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'skinToneIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'skinToneIdentifiers' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     private static var joinersAndSelectors = ["200D", "FE0F"]
35 |
/host/spi-builder-workspace/Sources/Emoji.swift:34:24: warning: static property 'joinersAndSelectors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 |     private static var genderIdentifiers = ["2642", "2640"]
33 |     private static var skinToneIdentifiers = ["1F3FB", "1F3FC", "1F3FD", "1F3FE", "1F3FF"]
34 |     private static var joinersAndSelectors = ["200D", "FE0F"]
   |                        |- warning: static property 'joinersAndSelectors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'joinersAndSelectors' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'joinersAndSelectors' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     var prettyPrinted: String {
/host/spi-builder-workspace/Sources/EmojiLoader.swift:37:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'EmojiLoader' may have shared mutable state; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | public class EmojiLoader {
    |              `- note: class 'EmojiLoader' does not conform to the 'Sendable' protocol
 36 |
 37 |     public static let shared = EmojiLoader()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'EmojiLoader' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     private let unicodePublicFolder = "https://unicode.org/Public/emoji/"
[8/14] Compiling UnicodeEmoji Emoji.swift
/host/spi-builder-workspace/Sources/Emoji.swift:32:24: warning: static property 'genderIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |     public var variants: [Emoji] = []
31 |
32 |     private static var genderIdentifiers = ["2642", "2640"]
   |                        |- warning: static property 'genderIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'genderIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'genderIdentifiers' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     private static var skinToneIdentifiers = ["1F3FB", "1F3FC", "1F3FD", "1F3FE", "1F3FF"]
34 |     private static var joinersAndSelectors = ["200D", "FE0F"]
/host/spi-builder-workspace/Sources/Emoji.swift:33:24: warning: static property 'skinToneIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     private static var genderIdentifiers = ["2642", "2640"]
33 |     private static var skinToneIdentifiers = ["1F3FB", "1F3FC", "1F3FD", "1F3FE", "1F3FF"]
   |                        |- warning: static property 'skinToneIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'skinToneIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'skinToneIdentifiers' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     private static var joinersAndSelectors = ["200D", "FE0F"]
35 |
/host/spi-builder-workspace/Sources/Emoji.swift:34:24: warning: static property 'joinersAndSelectors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 |     private static var genderIdentifiers = ["2642", "2640"]
33 |     private static var skinToneIdentifiers = ["1F3FB", "1F3FC", "1F3FD", "1F3FE", "1F3FF"]
34 |     private static var joinersAndSelectors = ["200D", "FE0F"]
   |                        |- warning: static property 'joinersAndSelectors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'joinersAndSelectors' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'joinersAndSelectors' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     var prettyPrinted: String {
[9/14] Compiling UnicodeEmoji EmojiCollection.swift
/host/spi-builder-workspace/Sources/Emoji.swift:32:24: warning: static property 'genderIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |     public var variants: [Emoji] = []
31 |
32 |     private static var genderIdentifiers = ["2642", "2640"]
   |                        |- warning: static property 'genderIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'genderIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'genderIdentifiers' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     private static var skinToneIdentifiers = ["1F3FB", "1F3FC", "1F3FD", "1F3FE", "1F3FF"]
34 |     private static var joinersAndSelectors = ["200D", "FE0F"]
/host/spi-builder-workspace/Sources/Emoji.swift:33:24: warning: static property 'skinToneIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 |     private static var genderIdentifiers = ["2642", "2640"]
33 |     private static var skinToneIdentifiers = ["1F3FB", "1F3FC", "1F3FD", "1F3FE", "1F3FF"]
   |                        |- warning: static property 'skinToneIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'skinToneIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'skinToneIdentifiers' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     private static var joinersAndSelectors = ["200D", "FE0F"]
35 |
/host/spi-builder-workspace/Sources/Emoji.swift:34:24: warning: static property 'joinersAndSelectors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 |     private static var genderIdentifiers = ["2642", "2640"]
33 |     private static var skinToneIdentifiers = ["1F3FB", "1F3FC", "1F3FD", "1F3FE", "1F3FF"]
34 |     private static var joinersAndSelectors = ["200D", "FE0F"]
   |                        |- warning: static property 'joinersAndSelectors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'joinersAndSelectors' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'joinersAndSelectors' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 |     var prettyPrinted: String {
[10/14] Compiling UnicodeEmoji EmojiGroup.swift
/host/spi-builder-workspace/Sources/EmojiLoader.swift:37:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'EmojiLoader' may have shared mutable state; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | public class EmojiLoader {
    |              `- note: class 'EmojiLoader' does not conform to the 'Sendable' protocol
 36 |
 37 |     public static let shared = EmojiLoader()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'EmojiLoader' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     private let unicodePublicFolder = "https://unicode.org/Public/emoji/"
/host/spi-builder-workspace/Sources/EmojiLoader.swift:114:31: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
112 |         completion: @escaping (_ testResponse: String?, _ error: Error?) -> Void
113 |     ) {
114 |         let task = URLSession.shared.dataTask(with: url) { (data, _, error) in
    |                               `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
115 |             guard
116 |                 let data = data,
[11/14] Compiling UnicodeEmoji EmojiLoader.swift
/host/spi-builder-workspace/Sources/EmojiLoader.swift:37:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'EmojiLoader' may have shared mutable state; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | public class EmojiLoader {
    |              `- note: class 'EmojiLoader' does not conform to the 'Sendable' protocol
 36 |
 37 |     public static let shared = EmojiLoader()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'EmojiLoader' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     private let unicodePublicFolder = "https://unicode.org/Public/emoji/"
/host/spi-builder-workspace/Sources/EmojiLoader.swift:114:31: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
112 |         completion: @escaping (_ testResponse: String?, _ error: Error?) -> Void
113 |     ) {
114 |         let task = URLSession.shared.dataTask(with: url) { (data, _, error) in
    |                               `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
115 |             guard
116 |                 let data = data,
[12/14] Compiling UnicodeEmoji UILabel+UnicodeEmoji.swift
[13/14] Compiling UnicodeEmoji UIView+UnicodeEmoji.swift
[14/14] Compiling UnicodeEmoji UserDefaults+UnicodeEmoji.swift
/host/spi-builder-workspace/Sources/Extensions/UserDefaults+UnicodeEmoji.swift:20:34: error: cannot find 'value' in scope
18 |         get {
19 |             if
20 |                 let storedData = value(forKey: Key.storedEmojiVersions) as? Data,
   |                                  `- error: cannot find 'value' in scope
21 |                 let value = try? PropertyListDecoder().decode(
22 |                     VersionedUnicodeEmojis.self, from: storedData
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/11] Compiling UnicodeEmoji CGPoint+UnicodeEmoji.swift
[3/11] Compiling UnicodeEmoji UILabel+UnicodeEmoji.swift
[4/12] Compiling UnicodeEmoji UIView+UnicodeEmoji.swift
[5/12] Compiling UnicodeEmoji EmojiVariantsView.swift
[6/12] Compiling UnicodeEmoji UserDefaults+UnicodeEmoji.swift
/host/spi-builder-workspace/Sources/Extensions/UserDefaults+UnicodeEmoji.swift:20:34: error: cannot find 'value' in scope
18 |         get {
19 |             if
20 |                 let storedData = value(forKey: Key.storedEmojiVersions) as? Data,
   |                                  `- error: cannot find 'value' in scope
21 |                 let value = try? PropertyListDecoder().decode(
22 |                     VersionedUnicodeEmojis.self, from: storedData
[7/12] Compiling UnicodeEmoji StickerCollectionCell.swift
[8/12] Emitting module UnicodeEmoji
[9/12] Compiling UnicodeEmoji Emoji.swift
[10/12] Compiling UnicodeEmoji EmojiCollection.swift
[11/12] Compiling UnicodeEmoji EmojiGroup.swift
/host/spi-builder-workspace/Sources/EmojiLoader.swift:114:31: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
112 |         completion: @escaping (_ testResponse: String?, _ error: Error?) -> Void
113 |     ) {
114 |         let task = URLSession.shared.dataTask(with: url) { (data, _, error) in
    |                               `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
115 |             guard
116 |                 let data = data,
[12/12] Compiling UnicodeEmoji EmojiLoader.swift
/host/spi-builder-workspace/Sources/EmojiLoader.swift:114:31: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
112 |         completion: @escaping (_ testResponse: String?, _ error: Error?) -> Void
113 |     ) {
114 |         let task = URLSession.shared.dataTask(with: url) { (data, _, error) in
    |                               `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
115 |             guard
116 |                 let data = data,
BUILD FAILURE 6.1 android