amiibo-service

1.0.1

A service written in Swift that interacts with the Amiibo API backend service.
rock-n-code/amiibo-service

What's New

Swift 5 support plus API and documentation improvements Stable

2025-09-16T16:06:08Z

This release contains the work done to:

Amend the library compilation on Swift 5;
Exposed the AmiiboClient protocol in the library;
Improve the AmiiboService service type interface to use the AmiiboClient protocol;
Updated the library DocC documentation catalog;
Updated the library documentation for both Xcode and GitHub Pages;
Added the Swift version and compatibility badges to the README file;
Added the link to the GitHub Pages documentation in the Swift Package Index configuration.

Amiibo Service

A library written entirely with Swift that provides everything the developer needs to interacts with the Amiibo API backend service.

Installation

To use this library with your package, then add it as a dependency in the Package.swift file:

let package = Package(
    // name, platforms, products, etc.
    dependencies: [
        .package(url: "https://github.com/rock-n-code/amiibo-service", from: "1.0.0"),
        // other dependencies
    ],
    targets: [
        .target(
            name: "SomeTarget", 
            dependencies: [
                .product(name: "AmiiboService", package: "amiibo-service"),
            ]
        )
        // other targets
    ]
)

It is also possible to use this library with your app in Xcode, then add it as a dependency in your Xcode project.

important: Swift 5.9 or higher is required in order to compile this library.

Documentation

Please refer to the online documentation for further informations about this library.

Description

  • Swift Tools 5.9.0
View More Packages from this Author

Dependencies

Last updated: Wed Sep 17 2025 17:55:32 GMT-0900 (Hawaii-Aleutian Daylight Time)