Skip to main content

Use this prompt to get started quickly.

Open in Cursor
These examples connect to signet so you can test for free. To go live, point the same configuration at Second’s mainnet endpoints from Test on mainnet and select the mainnet network.

Prerequisites

  • Android: API 24+ (Android 7.0), Kotlin 1.9+
  • JVM: OpenJDK 17+, Kotlin 1.9+

Getting started

1

Install the SDK

Add the GitLab Maven registry and the Bark dependency to your Gradle project.
In your root settings.gradle.kts:
In your module build.gradle.kts:
In the same file, inside the android {} block:
Without the JNA @aar swap and useLegacyPackaging, the app builds but crashes at runtime with UnsatisfiedLinkError when the wallet first loads.
2

Create a wallet

Generate a BIP39 mnemonic, configure the wallet for signet, and initialize it.
Back up the mnemonic securely, and back up wallet data continuously. Both are required to restore a wallet.
On Android, wallet operations are suspend functions. Call them from a coroutine (e.g. withContext(Dispatchers.IO)) to keep the main thread free.
3

Get a receiving address

Generate an Ark address to receive bitcoin.
Send some signet sats to this address using the faucet.
4

Check your balance

Sync the wallet with the Ark server and read your balance.

Next steps

Source and examples

Full Kotlin source and example projects on GitLab.

How Ark works

Learn about the protocol powering your wallet.