ANONYCORDv3.1GITHUB ↗

4.0UNSIGNED IPA

Install without a store.

Anonycord ships as an unsigned IPA, built from public source by GitHub Actions. You sign it yourself, on your own device, with a sideloading tool. This page explains what that means and walks each path, including the annoying parts.

4.1WHAT “UNSIGNED” MEANS

Every iOS app must carry a cryptographic signature before the system will run it. App Store apps are signed by Apple. Anonycord’s releases are deliberately not signed at all. The CI pipeline stops one step short, and your sideloading tool adds the signature using your own Apple ID at install time.

That design is a feature: there is no developer certificate to revoke, no store listing to disappear, and nothing between the public source code and the binary on your phone. You can verify the SHA-256 digest of every asset against the release page, or skip the IPA entirely and build from source in Xcode.

4.2CHOOSE YOUR PATH
REQUIRES

A Mac or PC on the same network for AltServer

PERSISTENCE

Auto-refreshes in the background every 7 days

  1. 01

    Install AltServer on your computer

    Download AltServer from altstore.io and run it on your Mac or PC. It stays in the menu bar / system tray and handles signing.

  2. 02

    Install AltStore to your iPhone

    From the AltServer icon choose “Install AltStore”, pick your device, and enter your Apple ID. iOS will ask you to trust the developer certificate under Settings → General → VPN & Device Management.

  3. 03

    Download Anonycord.ipa

    Grab the IPA from the latest GitHub release on your phone, or AirDrop it from your computer.

  4. 04

    Open the IPA with AltStore

    Share the file to AltStore (or use the + button in My Apps). AltStore signs it with your Apple ID and installs it. Camera, mic, photo, and Face ID permissions are requested on first use.

AltStore running on an iPhone, showing the Browse tab with installable apps
FIG 01 FROM ALTSTORE.IO

NOTE Free Apple IDs allow 3 sideloaded apps and 7-day certificates. AltStore refreshes automatically while your computer is reachable; SideStore does the same without a computer after setup.

4.3DIRECT DOWNLOAD

v3.1

29 Jun 2026Anonycord.ipa (6.6 MB)sha256 e9424316…13ee2270
4.4BUILT FROM SOURCE ON EVERY TAG

Releases are not built on anyone’s laptop. The build.yml workflow runs on a GitHub-hosted macOS runner: it pins a recent Xcode, produces an unsigned archive, packages the IPA, and attaches it to the release. Signing is intentionally left out. The uploader on every release asset is github-actions[bot], and the logs are public.

GitHub Actions build status badge for the build.yml workflowInspect the workflow runs ↗
TriggerResult
Push to mainUnsigned IPA uploaded as a workflow artifact
Tag matching v*IPA built and attached to a GitHub release
Manual runSame as a push, triggered from the Actions tab