← Back to notebook index

Notebook Topic

External Libraries

English topic guide inspired by the original iOS Developer Notebook, expanded for both iOS and Android teams.

What this topic covers

Execution checklist

iOS implementation notes

Android implementation notes

Code examples

Swift

// Package.swift dependency pinning
.package(url: "https://github.com/Alamofire/Alamofire.git", exact: "5.9.1")

Kotlin

dependencies {
  implementation("com.squareup.retrofit2:retrofit:2.11.0")
  constraints { implementation("com.squareup.okhttp3:okhttp:4.12.0") }
}

Reference links

Related topics