npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

firebase-app-distribution

v0.1.0

Published

A library that uses Firebase App Distribution APIs.

Readme

Firebase App Distibution npm npm

A NodeJS library used to access Firebase App Distribution APIs.

Pre-requisites

  1. A service account with permission to access the API.
    • Firebase App Distribution Admin role should suffice.

How to use

  1. Create a service account.
    1. Follow steps here to create a service account.
    2. Select the Console tab.
    3. When selecting a role, under Firebase App Distribution Admin.
  2. Download the service account keys.
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const uploadResult = await firebaseAppDistribution.uploadAndDistribute({
    appId: "1:471512247705:android:953e17e138b6f81c423708",
    binaryPath: "./app-debug.apk",
    fileName: "apk-debug.apk",
    testerEmails: ["[email protected]"],
    groupAliases: ["test-group"],
    releaseNotes: "This is an updated test release note!",
  });

  console.log(uploadResult);
}

main();

Output would look like:

{
  "name": "projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/6jdgi70i82gg0",
  "releaseNotes": { "text": "This is an updated test release note!" },
  "displayVersion": "1.0",
  "buildVersion": "1",
  "createTime": "2026-03-17T20:53:42.239409Z",
  "firebaseConsoleUri": "https://console.firebase.google.com/project/app-distribution-testproj/appdistribution/app/android:com.example.app/releases/6jdgi70i82gg0",
  "testingUri": "https://appdistribution.firebase.google.com/testerapps/1:471512247705:android:953e17e138b6f81c423708/releases/6jdgi70i82gg0",
  "binaryDownloadUri": "https://firebaseappdistribution.googleapis.com/app-binary-downloads/projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/6jdgi70i82gg0/binaries/b3745e27ddfae29b57d92ed3ca26fd91bce387b599af3b315ae52fab4fbf8c2a/app.apk?token=AP0lV28AAAAAabnNa6vN19pAdGTUmlvh7-sPEq34NSE3E9sWMatNCyrgrIe_5EvDe0_dKvRGfTQs91wDVb3uIc2LzJKb2GitXOSA7oQNLrY1D6m2FPUo6sDHV4qKajiOrdJe1zhTTFrUnwMgWSCmdmf6NUSkaB8wcHV_q2dPNlWsJWOe1cjfopIO5JHzIQg90WhOR_hgxUCXZZjrGsYGLBC5v2tUJWAB_dKI0GrvkKD5af19uOQra88KnqOMu62XMgtvsH1uDcSJWmbIXkSSa-D3qQ6PN_tGnCD6jOj6LWwlWXdAJT6mr3BrUufKeIDe1iS-xAXC4u7luEm-1WGoOhhRbFEstR06aBR0nmc",
  "updateTime": "2026-03-17T20:53:46.970572Z",
  "expireTime": "2026-08-14T20:53:42.239409Z"
}

Method references

FirebaseAppDistribution

import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const uploadResult = await firebaseAppDistribution.uploadAndDistribute({
    appId: "1:471512247705:android:953e17e138b6f81c423708",
    binaryPath: "./app-debug.apk",
    fileName: "apk-debug.apk",
    testerEmails: ["[email protected]"],
    groupAliases: ["test-group"],
    releaseNotes: "This is an updated test release note!",
  });

  console.log(uploadResult);
  // sample output
  // {
  //   "name": "projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/6jdgi70i82gg0",
  //   "releaseNotes": { "text": "This is an updated test release note!" },
  //   "displayVersion": "1.0",
  //   "buildVersion": "1",
  //   "createTime": "2026-03-17T20:53:42.239409Z",
  //   "firebaseConsoleUri": "https://console.firebase.google.com/project/app-distribution-testproj/appdistribution/app/android:com.example.app/releases/6jdgi70i82gg0",
  //   "testingUri": "https://appdistribution.firebase.google.com/testerapps/1:471512247705:android:953e17e138b6f81c423708/releases/6jdgi70i82gg0",
  //   "binaryDownloadUri": "https://firebaseappdistribution.googleapis.com/app-binary-downloads/projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/6jdgi70i82gg0/binaries/b3745e27ddfae29b57d92ed3ca26fd91bce387b599af3b315ae52fab4fbf8c2a/app.apk?token=AP0lV28AAAAAabnNa6vN19pAdGTUmlvh7-sPEq34NSE3E9sWMatNCyrgrIe_5EvDe0_dKvRGfTQs91wDVb3uIc2LzJKb2GitXOSA7oQNLrY1D6m2FPUo6sDHV4qKajiOrdJe1zhTTFrUnwMgWSCmdmf6NUSkaB8wcHV_q2dPNlWsJWOe1cjfopIO5JHzIQg90WhOR_hgxUCXZZjrGsYGLBC5v2tUJWAB_dKI0GrvkKD5af19uOQra88KnqOMu62XMgtvsH1uDcSJWmbIXkSSa-D3qQ6PN_tGnCD6jOj6LWwlWXdAJT6mr3BrUufKeIDe1iS-xAXC4u7luEm-1WGoOhhRbFEstR06aBR0nmc",
  //   "updateTime": "2026-03-17T20:53:46.970572Z",
  //   "expireTime": "2026-08-14T20:53:42.239409Z"
  // }
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const testers = await firebaseAppDistribution.testers.add([
    "[email protected]",
  ]);

  console.log(testers);
  // sample output
  // [
  //   {
  //     name: 'projects/471512247705/testers/[email protected]',
  //     email: '[email protected]'
  //   }
  // ]
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const testers = await firebaseAppDistribution.testers.remove([
    "[email protected]",
  ]);

  console.log(testers);
  // sample output
  // [ '[email protected]' ]
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const testers = await firebaseAppDistribution.testers.list();

  console.log(testers);
  // sample output
  // [
  //   {
  //     name: 'projects/471512247705/testers/[email protected]',
  //     groups: [ 'projects/471512247705/groups/test-group' ],
  //     lastActivityTime: '2026-03-16T21:41:47.126529Z',
  //     email: '[email protected]'
  //   },
  //   {
  //     name: 'projects/471512247705/testers/[email protected]',
  //     lastActivityTime: '2026-03-16T21:41:38.783343Z',
  //     email: '[email protected]'
  //   },
  //   {
  //     name: 'projects/471512247705/testers/[email protected]',
  //     lastActivityTime: '2026-03-16T22:17:44.384017Z',
  //     email: '[email protected]'
  //   }
  // ]

  const testersInTestGroup = await firebaseAppDistribution.testers.list({
    groups: ["test-group"],
  });

  console.log(testersInTestGroup);
  // sample output
  // [
  //   {
  //     name: 'projects/471512247705/testers/[email protected]',
  //     groups: [ 'projects/471512247705/groups/test-group' ],
  //     lastActivityTime: '2026-03-16T21:41:47.126529Z',
  //     email: '[email protected]'
  //   }
  // ]
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const tester = await firebaseAppDistribution.testers.get(
    "[email protected]",
  );

  console.log(tester);
  // sample output
  // {
  //   name: 'projects/471512247705/testers/[email protected]',
  //   groups: [ 'projects/471512247705/groups/test-group' ],
  //   lastActivityTime: '2026-03-16T21:41:47.126529Z',
  //   email: '[email protected]'
  // }
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const tester = await firebaseAppDistribution.testers.update(
    "[email protected]",
    {
      displayName: "Tester Display Name",
      groups: ["test-group"],
    },
  );

  console.log(tester);
  // sample output
  // {
  //   name: 'projects/471512247705/testers/[email protected]',
  //   displayName: 'Tester Display Name',
  //   groups: [ 'projects/471512247705/groups/test-group' ],
  //   lastActivityTime: '2026-03-16T21:41:38.783343Z',
  //   email: '[email protected]'
  // }
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const group = await firebaseAppDistribution.groups.create(
    "Group Display Name",
    "group-id",
  );

  console.log(group);
  // sample output
  // {
  //   name: 'projects/471512247705/groups/group-id',
  //   displayName: 'Group Display Name',
  //   id: 'group-id'
  // }
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const response = await firebaseAppDistribution.groups.delete("group-id");

  console.log(response);
  // sample output is an empty object on success
  // {}
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const group = await firebaseAppDistribution.groups.get("test-group");

  console.log(group);
  // sample output
  // {
  //   name: 'projects/471512247705/groups/test-group',
  //   displayName: 'test-group',
  //   testerCount: 2,
  //   releaseCount: 1,
  //   id: 'test-group'
  // }
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const groups = await firebaseAppDistribution.groups.list();

  console.log(groups);
  // sample output
  // [
  //   {
  //     name: 'projects/471512247705/groups/group-id',
  //     displayName: 'Group Display Name',
  //     id: 'group-id'
  //   },
  //   {
  //     name: 'projects/471512247705/groups/test-group',
  //     displayName: 'test-group',
  //     testerCount: 2,
  //     releaseCount: 1,
  //     id: 'test-group'
  //   }
  // ]
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const group = await firebaseAppDistribution.groups.update("group-id", {
    displayName: "New dispay name",
  });

  console.log(group);
  // sample output
  // {
  //   name: 'projects/471512247705/groups/group-id',
  //   displayName: 'New dispay name',
  //   id: 'group-id'
  // }
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const response = await firebaseAppDistribution.groups.removeTesters(
    "group-id",
    ["[email protected]"],
  );

  console.log(response);
  // sample output is an empty object on success
  // {}
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const response = await firebaseAppDistribution.groups.addTesters("group-id", [
    "[email protected]",
    "[email protected]",
  ]);

  console.log(response);
  // sample output is an empty object on success
  // {}
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const uploadResult = await firebaseAppDistribution.releases.upload(
    "1:471512247705:android:953e17e138b6f81c423708",
    "./app-debug.apk",
    "apk-debug.apk",
  );

  console.log(uploadResult);
  // sample output
  // {
  //   name: 'projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/-/operations/b3745e27ddfae29b57d92ed3ca26fd91bce387b599af3b315ae52fab4fbf8c2a'
  // }
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const response = await firebaseAppDistribution.releases.delete(
    "1:471512247705:android:953e17e138b6f81c423708",
    [
      "projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/19up3cdpmbps8",
    ],
  );

  console.log(response);
  // sample output is an empty object on success
  // {}
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const releaseData = await firebaseAppDistribution.releases.distribute(
    "projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0",
    {
      testerEmails: ["[email protected]"],
    },
  );

  console.log(releaseData);
  // sample output is empty object on success
  // {}
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const releaseData = await firebaseAppDistribution.releases.get(
    "projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0",
  );

  console.log(releaseData);
  // sample output
  // [
  //   {
  //     name: 'projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0',
  //     displayVersion: '1.0',
  //     buildVersion: '1',
  //     createTime: '2026-03-17T22:32:47.783475Z',
  //     firebaseConsoleUri: 'https://console.firebase.google.com/project/app-distribution-testproj/appdistribution/app/android:com.example.app/releases/0b6cob86n2tc0',
  //     testingUri: 'https://appdistribution.firebase.google.com/testerapps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0',
  //     binaryDownloadUri: 'https://firebaseappdistribution.googleapis.com/app-binary-downloads/projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0/binaries/b3745e27ddfae29b57d92ed3ca26fd91bce387b599af3b315ae52fab4fbf8c2a/app.apk?token=AP0lV28AAAAAabnk1ZzSwXSXBozsb2Sd3LKvG0yvdetjahsh0DF1YiBYIiguwSnQEdPoC8ee_y2eNpRN0e2vc1hUViHeUbQ7glyPYyk8zxLBtzV_boEsxDBJXXtDL3Siem4jadJgTV18vH55ulJmOAG0k71BwEa9Un1WjQoeMMn9UF_1S-YXC2oLZzw7IODcfbSPJ-cvJn5zbFiyjRRUUpavUdZoy6atkAnvmGeTwPi0mHT7cJtvgD2M8F5a8k-BF3xOKPvmdfLGaNf11vl5PvHqwom2zDXwBAUWGDHt_Nx5OcIJP2NkyORZq22cc0n51u8hE6jEjO-bHBjAMMGvixLQKijdZVhKRoYamTw',
  //     updateTime: '2026-03-17T22:32:47.829991Z',
  //     expireTime: '2026-08-14T22:32:47.783475Z'
  //   }
  // ]
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const releases = await firebaseAppDistribution.releases.list(
    "1:471512247705:android:953e17e138b6f81c423708",
  );

  console.log(releases);
  // sample output
  // [
  //   {
  //     name: 'projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/19up3cdpmbps8',
  //     displayVersion: '1.0',
  //     buildVersion: '1',
  //     createTime: '2026-03-17T22:22:45.185232Z',
  //     firebaseConsoleUri: 'https://console.firebase.google.com/project/app-distribution-testproj/appdistribution/app/android:com.example.app/releases/19up3cdpmbps8',
  //     testingUri: 'https://appdistribution.firebase.google.com/testerapps/1:471512247705:android:953e17e138b6f81c423708/releases/19up3cdpmbps8',
  //     binaryDownloadUri: 'https://firebaseappdistribution.googleapis.com/app-binary-downloads/projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/19up3cdpmbps8/binaries/b3745e27ddfae29b57d92ed3ca26fd91bce387b599af3b315ae52fab4fbf8c2a/app.apk?token=AP0lV28AAAAAabnjOYV6UokWhDWyQ3VHjZ_vKPJlKpTqJ8pf1jqNk5KKTxY9APNDl-jjFQa2d2PS1HA8Wh9p7smfsfPV0qk5hkk3DspuAKHtZLFyk5HVKLK8jwHOweeeu-IMxYN3fiYKLQf1tzk1i5qBYudy3MTrU61MnZBallLXArFsRlyMJC6ssW1l2uvTGYEJVczgk0D-NwKUT7pFjwoHyfCPQiyuhH04l-w7rilHOLzsStI1NMUVAqTEKF4ZCeAIOAJwCVly_NCRnQKBLLt7rbIFEVLjAP5RJl048d8Puglg9MxYCWtVDa3ZJrikvVULHGneNUIvJgXph25K5uezcfpreOE-dZl6CMo',
  //     updateTime: '2026-03-17T22:22:45.228936Z',
  //     expireTime: '2026-08-14T22:22:45.185232Z'
  //   }
  // ]
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const releaseData = await firebaseAppDistribution.releases.addReleaseNotes(
    "projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0",
    "This is test release notes!!!",
  );

  console.log(releaseData);
  // sample output
  // {
  //   name: 'projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0',
  //   releaseNotes: { text: 'This is test release notes!!!' },
  //   displayVersion: '1.0',
  //   buildVersion: '1',
  //   createTime: '2026-03-17T22:32:47.783475Z',
  //   firebaseConsoleUri: 'https://console.firebase.google.com/project/app-distribution-testproj/appdistribution/app/android:com.example.app/releases/0b6cob86n2tc0',
  //   testingUri: 'https://appdistribution.firebase.google.com/testerapps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0',
  //   binaryDownloadUri: 'https://firebaseappdistribution.googleapis.com/app-binary-downloads/projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0/binaries/b3745e27ddfae29b57d92ed3ca26fd91bce387b599af3b315ae52fab4fbf8c2a/app.apk?token=AP0lV28AAAAAabnnY1PeW_MvMsri-b8s8txIlgW7Vt6xLudBQEoEe4vLOsNr6waIbKa6P8Y9x79eDL5fA1wjSZxPq2VBCE1t6hNyVgkDUrqGP2siylFU5HSRWXkVKqIlitLce9ISyi92E2jT8xyrZRH68FbUjg7h__UVDkWU9aCqSNRC40v1Gw97Fuu6-bqSIVunhq4g6HSPaLP8S8W4z-5q8PopGZCMqMQrMDOyq03n5cPJDLGm9MYVLJgl-NavkuHTmEUf8-IWryxbDiaxTtbvm9_IxK1eOQvHBgH9fZqcjUycXs9I9cxu5IfqgwJ9t5_gy8Otup142b3eyK9SpchpcrACwYlXJGtUYuA',
  //   updateTime: '2026-03-17T22:44:35.695762Z',
  //   expireTime: '2026-08-14T22:32:47.783475Z'
  // }
}

main();
import { FirebaseAppDistribution } from "firebase-app-distribution";

async function main() {
  const firebaseAppDistribution = new FirebaseAppDistribution({
    keyFile: "../service-account.json",
  });

  const operationData = await firebaseAppDistribution.releases.operations.get(
    "projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/-/operations/b3745e27ddfae29b57d92ed3ca26fd91bce387b599af3b315ae52fab4fbf8c2a",
  );

  console.log(JSON.stringify(operationData, null, 2));
  // sample output
  // {
  //   "name": "projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/-/operations/b3745e27ddfae29b57d92ed3ca26fd91bce387b599af3b315ae52fab4fbf8c2a",
  //   "done": true,
  //   "response": {
  //     "@type": "type.googleapis.com/google.firebase.appdistro.v1.UploadReleaseResponse",
  //     "result": "RELEASE_CREATED",
  //     "release": {
  //       "name": "projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0",
  //       "releaseNotes": {
  //         "text": "This is test release notes!!!"
  //       },
  //       "displayVersion": "1.0",
  //       "buildVersion": "1",
  //       "createTime": "2026-03-17T22:32:47.783475Z",
  //       "firebaseConsoleUri": "https://console.firebase.google.com/project/app-distribution-testproj/appdistribution/app/android:com.example.app/releases/0b6cob86n2tc0",
  //       "testingUri": "https://appdistribution.firebase.google.com/testerapps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0",
  //       "binaryDownloadUri": "https://firebaseappdistribution.googleapis.com/app-binary-downloads/projects/471512247705/apps/1:471512247705:android:953e17e138b6f81c423708/releases/0b6cob86n2tc0/binaries/b3745e27ddfae29b57d92ed3ca26fd91bce387b599af3b315ae52fab4fbf8c2a/app.apk?token=AP0lV28AAAAAabnoA5WHVRqpgHj_33-xmlxekD-kAfCAbG8e6i0CAzInlxQQntAaUp-1suAUgPUMADw4fQwhPhVO1rqHw0aZB-VEARkZjRiGOkaPxd8vgo5SwgTPAoSx_REcQiEXRXhohqt5-l_0yYwXTO4Tp6P1RLsKg6BQBaH6g-W4fxHrz2SL-Bb4lqaeS2v83lWQ579KBotMb82cYnxpixNQuQKNJYqKY6DX2j0onCnEkeM0tM5-Zz9HfF2IXtH7W6vz5g9hS4yBaNV6dz0zRxcoMLT7bCTfUs8akTki3be2C0su9Z_j2dLHGGr990AYlwH6NvNiSjcvOvVghUm-EwEhm01wzMcIu3E",
  //       "updateTime": "2026-03-17T22:44:35.695762Z",
  //       "expireTime": "2026-08-14T22:32:47.783475Z"
  //     }
  //   }
  // }
}

main();