From 8dcc01b944bcbfc37754286d8bcb461d25ae6b20 Mon Sep 17 00:00:00 2001 From: Taras Filatov Date: Mon, 11 May 2026 11:00:12 +0100 Subject: [PATCH] chore(android): drop temporary sample-clone pin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit sample-android PR #1 (tf/setup-integration-and-ux-fixes) merged on 2026-05-08, so the pin now clones a frozen pre-merge state. The sample's Setup-tab → BuildConfig wiring + .env policy that this pin was protecting is on main now, so default-branch clone is correct again. Other SDK targets (swift, reactjs, reactnative, wordpress) already use the default branch via the optional `branch?` field — this just removes the android-specific override. --- src/index.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/index.ts b/src/index.ts index 341bcac..f262134 100644 --- a/src/index.ts +++ b/src/index.ts @@ -885,16 +885,9 @@ async function checkSdkUpdate(dir: string, name: string): Promise { } const SDK_REPOS: Record = { - // TEMPORARY: pin to the PR branch that wires the sample's Setup-tab - // defaults to BuildConfig (https://github.com/dappros/ethora-sample-android/pull/1). - // Without this branch, the .env keys we write here (ETHORA_APP_TOKEN / - // USER_EMAIL / USER_PASSWORD) are read but ignored — the sample's - // PlaygroundSessionState still hardcodes BASE app ID + dev-team email/ - // password defaults. Drop the `branch` field once PR #1 lands on main. android: { repo: "https://github.com/dappros/ethora-sample-android.git", name: "ethora-sample-android", - branch: "tf/setup-integration-and-ux-fixes", }, swift: { repo: "https://github.com/dappros/ethora-sample-swift.git", name: "ethora-sample-swift" }, reactjs: { repo: "https://github.com/dappros/ethora-chat-component.git", name: "ethora-chat-component" },