diff --git a/.github/workflows/kmp-ci.yml b/.github/workflows/kmp-ci.yml
new file mode 100644
index 000000000..edd6ebec0
--- /dev/null
+++ b/.github/workflows/kmp-ci.yml
@@ -0,0 +1,55 @@
+name: KMP CI
+
+on:
+ pull_request:
+ paths: ["packages/kmp-sdk/**", "packages/kmp-test-app/**"]
+ push:
+ branches: [dev, staging, main]
+ paths: ["packages/kmp-sdk/**", "packages/kmp-test-app/**"]
+
+jobs:
+ kmp-sdk-tests:
+ runs-on: ubuntu-latest
+ timeout-minutes: 60
+ defaults:
+ run:
+ working-directory: packages/kmp-sdk
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-java@v4
+ with:
+ distribution: temurin
+ java-version: "17"
+ - uses: ./.github/actions/cache-gradle
+ - uses: gradle/actions/setup-gradle@v4
+ with:
+ cache-disabled: true
+ - run: ./gradlew :shared:jvmTest
+ - uses: actions/upload-artifact@v4
+ if: always()
+ with:
+ name: kmp-sdk-test-results
+ path: packages/kmp-sdk/shared/build/reports/tests/
+
+ kmp-test-app-tests:
+ runs-on: ubuntu-latest
+ timeout-minutes: 60
+ defaults:
+ run:
+ working-directory: packages/kmp-test-app
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-java@v4
+ with:
+ distribution: temurin
+ java-version: "17"
+ - uses: ./.github/actions/cache-gradle
+ - uses: gradle/actions/setup-gradle@v4
+ with:
+ cache-disabled: true
+ - run: ./gradlew :composeApp:testDebugUnitTest
+ - uses: actions/upload-artifact@v4
+ if: always()
+ with:
+ name: kmp-test-app-test-results
+ path: packages/kmp-test-app/composeApp/build/reports/tests/
diff --git a/.github/workflows/workspace-ci.yml b/.github/workflows/workspace-ci.yml
index 56ebcbee8..c4e5061e9 100644
--- a/.github/workflows/workspace-ci.yml
+++ b/.github/workflows/workspace-ci.yml
@@ -91,6 +91,12 @@ jobs:
- name: Install Dependencies
uses: ./.github/actions/yarn-install
+ - name: Install SwiftLint
+ run: |
+ curl -sL "https://github.com/realm/SwiftLint/releases/download/0.57.1/swiftlint_linux.zip" -o /tmp/swiftlint.zip
+ unzip -o /tmp/swiftlint.zip -d /tmp/swiftlint
+ sudo install /tmp/swiftlint/swiftlint /usr/local/bin/swiftlint
+
- name: Build workspace dependencies
run: yarn build
diff --git a/.gitignore b/.gitignore
index 35d5c7123..42bbe4dc2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,8 +12,8 @@ showcase
output/*
*.tsbuildinfo
.yarnrc.yml
-.giga/tasks/*
package-lock.json
+.claude
# CI-generated tarballs (don't commit these!)
mobile-sdk-alpha-ci.tgz
diff --git a/app/.eslintrc.cjs b/app/.eslintrc.cjs
index 584d3d4a0..a4067b7a4 100644
--- a/app/.eslintrc.cjs
+++ b/app/.eslintrc.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/App.tsx b/app/App.tsx
index 9b08d7251..17aeaafa0 100644
--- a/app/App.tsx
+++ b/app/App.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/babel.config.cjs b/app/babel.config.cjs
index f0861d392..37dcde959 100644
--- a/app/babel.config.cjs
+++ b/app/babel.config.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/babel.config.test.cjs b/app/babel.config.test.cjs
index 194078bea..caeb002a0 100644
--- a/app/babel.config.test.cjs
+++ b/app/babel.config.test.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/declarations.d.ts b/app/declarations.d.ts
index c62b3c171..e346ccca8 100644
--- a/app/declarations.d.ts
+++ b/app/declarations.d.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/docs/examples/tree-shaking/granular-circuits-example.ts b/app/docs/examples/tree-shaking/granular-circuits-example.ts
index 8ea72ff31..b606895f0 100644
--- a/app/docs/examples/tree-shaking/granular-circuits-example.ts
+++ b/app/docs/examples/tree-shaking/granular-circuits-example.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/docs/examples/tree-shaking/level2-optimal-example.ts b/app/docs/examples/tree-shaking/level2-optimal-example.ts
index ebc83d4b7..f27f1e9e1 100644
--- a/app/docs/examples/tree-shaking/level2-optimal-example.ts
+++ b/app/docs/examples/tree-shaking/level2-optimal-example.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/docs/examples/tree-shaking/level3-migration-guide.ts b/app/docs/examples/tree-shaking/level3-migration-guide.ts
index 252ee386c..15e220ca7 100644
--- a/app/docs/examples/tree-shaking/level3-migration-guide.ts
+++ b/app/docs/examples/tree-shaking/level3-migration-guide.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/docs/examples/tree-shaking/level3-optimal-example.ts b/app/docs/examples/tree-shaking/level3-optimal-example.ts
index 14cb67af4..6439ba7c0 100644
--- a/app/docs/examples/tree-shaking/level3-optimal-example.ts
+++ b/app/docs/examples/tree-shaking/level3-optimal-example.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/docs/examples/tree-shaking/optimal-pattern-example.ts b/app/docs/examples/tree-shaking/optimal-pattern-example.ts
index d047df16b..ef79d6402 100644
--- a/app/docs/examples/tree-shaking/optimal-pattern-example.ts
+++ b/app/docs/examples/tree-shaking/optimal-pattern-example.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/env.ts b/app/env.ts
index 5ee1d7dad..28b238f5a 100644
--- a/app/env.ts
+++ b/app/env.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/index.js b/app/index.js
index 8e68c66c8..976d7167e 100644
--- a/app/index.js
+++ b/app/index.js
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/jest.config.cjs b/app/jest.config.cjs
index 7c4197174..e6ec3a0cf 100644
--- a/app/jest.config.cjs
+++ b/app/jest.config.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/jest.setup.js b/app/jest.setup.js
index 4a6401f35..6a93ee2f4 100644
--- a/app/jest.setup.js
+++ b/app/jest.setup.js
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/metro.config.cjs b/app/metro.config.cjs
index f86597c98..3c022f1e9 100644
--- a/app/metro.config.cjs
+++ b/app/metro.config.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/react-native.config.cjs b/app/react-native.config.cjs
index aea045223..608160c38 100644
--- a/app/react-native.config.cjs
+++ b/app/react-native.config.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/alias-imports.cjs b/app/scripts/alias-imports.cjs
index 6f9703549..486594c60 100644
--- a/app/scripts/alias-imports.cjs
+++ b/app/scripts/alias-imports.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/analyze-tree-shaking.cjs b/app/scripts/analyze-tree-shaking.cjs
index b2cd4bd55..a7e37d830 100755
--- a/app/scripts/analyze-tree-shaking.cjs
+++ b/app/scripts/analyze-tree-shaking.cjs
@@ -1,5 +1,5 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/bundle-analyze-ci.cjs b/app/scripts/bundle-analyze-ci.cjs
index 902aa4112..3f7d59e86 100755
--- a/app/scripts/bundle-analyze-ci.cjs
+++ b/app/scripts/bundle-analyze-ci.cjs
@@ -1,5 +1,5 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/check-test-requires.cjs b/app/scripts/check-test-requires.cjs
index 61a7b4633..d969db147 100644
--- a/app/scripts/check-test-requires.cjs
+++ b/app/scripts/check-test-requires.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/cleanup-private-modules.cjs b/app/scripts/cleanup-private-modules.cjs
index c17143f5e..de89dd715 100644
--- a/app/scripts/cleanup-private-modules.cjs
+++ b/app/scripts/cleanup-private-modules.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/find-type-import-issues.mjs b/app/scripts/find-type-import-issues.mjs
index 51f650a9a..a0fd16650 100755
--- a/app/scripts/find-type-import-issues.mjs
+++ b/app/scripts/find-type-import-issues.mjs
@@ -1,6 +1,6 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/mobile-deploy-confirm.cjs b/app/scripts/mobile-deploy-confirm.cjs
index 90edc45e2..0487ee947 100755
--- a/app/scripts/mobile-deploy-confirm.cjs
+++ b/app/scripts/mobile-deploy-confirm.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/run-ios-simulator.cjs b/app/scripts/run-ios-simulator.cjs
index 87028003f..ac4887929 100644
--- a/app/scripts/run-ios-simulator.cjs
+++ b/app/scripts/run-ios-simulator.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/setup-private-modules.cjs b/app/scripts/setup-private-modules.cjs
index 39ded4be9..bb883dbb9 100644
--- a/app/scripts/setup-private-modules.cjs
+++ b/app/scripts/setup-private-modules.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/tag.cjs b/app/scripts/tag.cjs
index 864d2736e..f3b90a6a2 100644
--- a/app/scripts/tag.cjs
+++ b/app/scripts/tag.cjs
@@ -1,5 +1,5 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/test-tree-shaking.cjs b/app/scripts/test-tree-shaking.cjs
index d63a21469..c88e81ce5 100755
--- a/app/scripts/test-tree-shaking.cjs
+++ b/app/scripts/test-tree-shaking.cjs
@@ -1,5 +1,5 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/tests/aliasImports.test.cjs b/app/scripts/tests/aliasImports.test.cjs
index ab21b516c..cd34dbce9 100644
--- a/app/scripts/tests/aliasImports.test.cjs
+++ b/app/scripts/tests/aliasImports.test.cjs
@@ -1,5 +1,5 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/tests/bundleAnalyzeCi.test.cjs b/app/scripts/tests/bundleAnalyzeCi.test.cjs
index d8c1623e6..6e5151567 100644
--- a/app/scripts/tests/bundleAnalyzeCi.test.cjs
+++ b/app/scripts/tests/bundleAnalyzeCi.test.cjs
@@ -1,5 +1,5 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/tests/cleanupIosBuild.test.cjs b/app/scripts/tests/cleanupIosBuild.test.cjs
index a9547738d..9263cce9f 100644
--- a/app/scripts/tests/cleanupIosBuild.test.cjs
+++ b/app/scripts/tests/cleanupIosBuild.test.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/tests/mobileDeployConfirm.test.cjs b/app/scripts/tests/mobileDeployConfirm.test.cjs
index d3995ed72..ccc0b605e 100644
--- a/app/scripts/tests/mobileDeployConfirm.test.cjs
+++ b/app/scripts/tests/mobileDeployConfirm.test.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/tests/mobileDeployConfirmModule.test.cjs b/app/scripts/tests/mobileDeployConfirmModule.test.cjs
index 56e3b78aa..93675099f 100644
--- a/app/scripts/tests/mobileDeployConfirmModule.test.cjs
+++ b/app/scripts/tests/mobileDeployConfirmModule.test.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/tests/treeShaking.test.cjs b/app/scripts/tests/treeShaking.test.cjs
index f24733062..e62effa57 100644
--- a/app/scripts/tests/treeShaking.test.cjs
+++ b/app/scripts/tests/treeShaking.test.cjs
@@ -1,5 +1,5 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/version-manager.cjs b/app/scripts/version-manager.cjs
index b8c9ec0cb..7747ec9dd 100755
--- a/app/scripts/version-manager.cjs
+++ b/app/scripts/version-manager.cjs
@@ -1,6 +1,6 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/version-manager.test.cjs b/app/scripts/version-manager.test.cjs
index 8f09e60c2..2d1d19f64 100644
--- a/app/scripts/version-manager.test.cjs
+++ b/app/scripts/version-manager.test.cjs
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/scripts/version.cjs b/app/scripts/version.cjs
index c029505b7..07578df7c 100755
--- a/app/scripts/version.cjs
+++ b/app/scripts/version.cjs
@@ -1,5 +1,5 @@
#!/usr/bin/env node
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/assets/animations/loader.ts b/app/src/assets/animations/loader.ts
index b028bfde4..03c72e18b 100644
--- a/app/src/assets/animations/loader.ts
+++ b/app/src/assets/animations/loader.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/AlertModal.tsx b/app/src/components/AlertModal.tsx
index 55909ecab..a3375594e 100644
--- a/app/src/components/AlertModal.tsx
+++ b/app/src/components/AlertModal.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/BackupDocumentationLink.tsx b/app/src/components/BackupDocumentationLink.tsx
index 246177f74..40aa9f535 100644
--- a/app/src/components/BackupDocumentationLink.tsx
+++ b/app/src/components/BackupDocumentationLink.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/Disclosures.tsx b/app/src/components/Disclosures.tsx
index b95243a75..9138dd79e 100644
--- a/app/src/components/Disclosures.tsx
+++ b/app/src/components/Disclosures.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/ErrorBoundary.tsx b/app/src/components/ErrorBoundary.tsx
index a272455df..9bf18eca2 100644
--- a/app/src/components/ErrorBoundary.tsx
+++ b/app/src/components/ErrorBoundary.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/FeedbackModal.tsx b/app/src/components/FeedbackModal.tsx
index 4a4e7ca60..3be655be8 100644
--- a/app/src/components/FeedbackModal.tsx
+++ b/app/src/components/FeedbackModal.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/LoadingUI.tsx b/app/src/components/LoadingUI.tsx
index d9f74bfdf..b6fcd49f3 100644
--- a/app/src/components/LoadingUI.tsx
+++ b/app/src/components/LoadingUI.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/Mnemonic.tsx b/app/src/components/Mnemonic.tsx
index 7e5560fd3..5c003444f 100644
--- a/app/src/components/Mnemonic.tsx
+++ b/app/src/components/Mnemonic.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/PointHistoryList.tsx b/app/src/components/PointHistoryList.tsx
index 7a0f25be7..0d18aaca7 100644
--- a/app/src/components/PointHistoryList.tsx
+++ b/app/src/components/PointHistoryList.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/SystemBars.tsx b/app/src/components/SystemBars.tsx
index 7e95c714f..4dc92fbaa 100644
--- a/app/src/components/SystemBars.tsx
+++ b/app/src/components/SystemBars.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/Tips.tsx b/app/src/components/Tips.tsx
index 348390c8e..4689486ad 100644
--- a/app/src/components/Tips.tsx
+++ b/app/src/components/Tips.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/WebViewFooter.tsx b/app/src/components/WebViewFooter.tsx
index 7b3e72dae..1234f30c1 100644
--- a/app/src/components/WebViewFooter.tsx
+++ b/app/src/components/WebViewFooter.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/documents/IDSelectorItem.tsx b/app/src/components/documents/IDSelectorItem.tsx
index 297ac4186..2609aec4a 100644
--- a/app/src/components/documents/IDSelectorItem.tsx
+++ b/app/src/components/documents/IDSelectorItem.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/documents/IDSelectorSheet.tsx b/app/src/components/documents/IDSelectorSheet.tsx
index 9f50de8b1..e578c3e04 100644
--- a/app/src/components/documents/IDSelectorSheet.tsx
+++ b/app/src/components/documents/IDSelectorSheet.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/documents/index.ts b/app/src/components/documents/index.ts
index e4bd90441..d77662796 100644
--- a/app/src/components/documents/index.ts
+++ b/app/src/components/documents/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/EmptyIdCard.tsx b/app/src/components/homescreen/EmptyIdCard.tsx
index 0ae3dfeb5..6ec962c10 100644
--- a/app/src/components/homescreen/EmptyIdCard.tsx
+++ b/app/src/components/homescreen/EmptyIdCard.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/ExpiredIdCard.tsx b/app/src/components/homescreen/ExpiredIdCard.tsx
index d315e03de..e7b7d3fe5 100644
--- a/app/src/components/homescreen/ExpiredIdCard.tsx
+++ b/app/src/components/homescreen/ExpiredIdCard.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/IdCard.tsx b/app/src/components/homescreen/IdCard.tsx
index afdf842ad..60499b54b 100644
--- a/app/src/components/homescreen/IdCard.tsx
+++ b/app/src/components/homescreen/IdCard.tsx
@@ -1,12 +1,11 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
-import type { FC } from 'react';
-import React, { useCallback } from 'react';
-import { Image, Pressable, StyleSheet } from 'react-native';
+import React, { type FC, useCallback } from 'react';
+import { Dimensions, Image, Pressable, StyleSheet } from 'react-native';
import LinearGradient from 'react-native-linear-gradient';
-import { Text, XStack, YStack } from 'tamagui';
+import { Separator, Text, XStack, YStack } from 'tamagui';
import { useNavigation } from '@react-navigation/native';
import type { AadhaarData } from '@selfxyz/common';
@@ -20,11 +19,18 @@ import {
import { WarningTriangleIcon } from '@selfxyz/euclid/dist/components/icons/WarningTriangleIcon';
import { RoundFlag } from '@selfxyz/mobile-sdk-alpha/components';
import {
+ black,
red600,
+ slate100,
+ slate300,
+ slate400,
+ slate500,
white,
yellow500,
} from '@selfxyz/mobile-sdk-alpha/constants/colors';
import { dinot, plexMono } from '@selfxyz/mobile-sdk-alpha/constants/fonts';
+import AadhaarIcon from '@selfxyz/mobile-sdk-alpha/svgs/icons/aadhaar.svg';
+import EPassport from '@selfxyz/mobile-sdk-alpha/svgs/icons/epassport.svg';
import CardBackgroundId1 from '@/assets/images/card_background_id1.png';
import CardBackgroundId2 from '@/assets/images/card_background_id2.png';
@@ -34,14 +40,20 @@ import CardBackgroundId5 from '@/assets/images/card_background_id5.png';
import CardBackgroundId6 from '@/assets/images/card_background_id6.png';
import DevCardLogo from '@/assets/images/dev_card_logo.svg';
import DevCardWave from '@/assets/images/dev_card_wave.svg';
+import LogoGray from '@/assets/images/logo_gray.svg';
import SelfLogoPending from '@/assets/images/self_logo_pending.svg';
import WaveOverlay from '@/assets/images/wave_overlay.png';
import { getSecurityLevel } from '@/components/homescreen/cardSecurityBadge';
import { cardStyles } from '@/components/homescreen/cardStyles';
import KycIdCard from '@/components/homescreen/KycIdCard';
+import { SvgXml } from '@/components/homescreen/SvgXmlWrapper';
import { useCardDimensions } from '@/hooks/useCardDimensions';
import { getBackgroundIndex } from '@/utils/cardBackgroundSelector';
-import { getDocumentAttributes } from '@/utils/documentAttributes';
+import {
+ formatDateFromYYMMDD,
+ getDocumentAttributes,
+ getNameAndSurname,
+} from '@/utils/documentAttributes';
import { registerModalCallbacks } from '@/utils/modalCallbackRegistry';
const CARD_BACKGROUNDS = [
@@ -282,6 +294,12 @@ const getCountryDemonym = (code: string): string => {
return COUNTRY_DEMONYMS[upperCode] || upperCode;
};
+const logoSvg = ``;
+
interface IdCardLayoutAttributes {
idDocument: PassportData | AadhaarData | KycData | null;
selected: boolean;
@@ -356,6 +374,331 @@ const IdCardLayout: FC = ({
);
}
+
+ // When data is revealed (hidden=false), show the white data-view card
+ if (!hidden && selected) {
+ const { width: screenWidth } = Dimensions.get('window');
+ const revealedWidth = screenWidth * 0.95 - 16;
+ const revealedHeight = revealedWidth * 0.645;
+ const revealedBorderRadius = revealedWidth * 0.04;
+ const revealedPadding = revealedWidth * 0.035;
+ const revealedFontSize = {
+ large: revealedWidth * 0.045,
+ small: revealedWidth * 0.028,
+ xsmall: revealedWidth * 0.022,
+ };
+ const imageSize = {
+ width: revealedWidth * 0.2,
+ height: revealedWidth * 0.29,
+ };
+ const contentLeftOffset = imageSize.width + revealedPadding;
+ const docAttributes = getDocumentAttributes(idDocument);
+ const nameData = getNameAndSurname(docAttributes.nameSlice);
+
+ return (
+
+
+ {/* Header Section */}
+
+
+ {isAadhaarDocument(idDocument) ? (
+
+ ) : (
+
+ )}
+
+
+ {isMRZDocument(idDocument) &&
+ idDocument.documentCategory === 'passport'
+ ? 'Passport'
+ : isAadhaarDocument(idDocument)
+ ? 'Aadhaar'
+ : 'ID Card'}
+
+
+ Verified{' '}
+ {isMRZDocument(idDocument) &&
+ idDocument.documentCategory === 'passport'
+ ? 'Biometric Passport'
+ : isAadhaarDocument(idDocument)
+ ? 'Aadhaar Document'
+ : 'Biometric ID Card'}
+
+
+
+
+ {idDocument.mock && (
+
+
+ DEVELOPER
+
+
+ )}
+
+
+
+
+
+ {/* Main Content Section */}
+
+ {/* Person Image Placeholder */}
+
+
+
+
+ {/* ID Attributes Grid */}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {isAadhaarDocument(idDocument) ? (
+ <>
+
+
+
+
+
+
+ >
+ ) : (
+ <>
+
+
+
+
+
+
+
+
+
+ >
+ )}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* Footer Section - MRZ */}
+ {isMRZDocument(idDocument) && idDocument.mrz && (
+
+
+
+
+
+ {idDocument.documentCategory === 'passport' ? (
+ <>
+
+ {idDocument.mrz.slice(0, 44)}
+
+
+ {idDocument.mrz.slice(44, 88)}
+
+ >
+ ) : (
+ <>
+
+ {idDocument.mrz.slice(0, 30)}
+
+
+ {idDocument.mrz.slice(30, 60)}
+
+
+ {idDocument.mrz.slice(60, 90)}
+
+ >
+ )}
+
+
+ )}
+
+ {/* Footer Section - Empty placeholder for Aadhaar */}
+ {isAadhaarDocument(idDocument) && (
+
+
+
+
+
+ )}
+
+
+ );
+ }
+
const padding = cardWidth * 0.04;
// Get document attributes
@@ -712,4 +1055,33 @@ const styles = StyleSheet.create({
},
});
+interface IdAttributeProps {
+ name: string;
+ value: string;
+}
+
+const IdAttribute: FC = ({ name, value }) => {
+ const { width: screenWidth } = Dimensions.get('window');
+ const attrFontSize = {
+ label: screenWidth * 0.024,
+ value: screenWidth * 0.02,
+ };
+
+ return (
+
+
+ {name}
+
+
+ {value}
+
+
+ );
+};
+
export default IdCardLayout;
diff --git a/app/src/components/homescreen/KycIdCard.tsx b/app/src/components/homescreen/KycIdCard.tsx
index 00c8337f6..0bfcbc10e 100644
--- a/app/src/components/homescreen/KycIdCard.tsx
+++ b/app/src/components/homescreen/KycIdCard.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/PendingIdCard.tsx b/app/src/components/homescreen/PendingIdCard.tsx
index 90bfb025f..98e45b1b6 100644
--- a/app/src/components/homescreen/PendingIdCard.tsx
+++ b/app/src/components/homescreen/PendingIdCard.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/SvgXmlWrapper.native.tsx b/app/src/components/homescreen/SvgXmlWrapper.native.tsx
index 1543c6477..616f00f5d 100644
--- a/app/src/components/homescreen/SvgXmlWrapper.native.tsx
+++ b/app/src/components/homescreen/SvgXmlWrapper.native.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/SvgXmlWrapper.tsx b/app/src/components/homescreen/SvgXmlWrapper.tsx
index 92127ef3b..c71d550db 100644
--- a/app/src/components/homescreen/SvgXmlWrapper.tsx
+++ b/app/src/components/homescreen/SvgXmlWrapper.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/SvgXmlWrapper.web.tsx b/app/src/components/homescreen/SvgXmlWrapper.web.tsx
index 10d107345..e02ae5406 100644
--- a/app/src/components/homescreen/SvgXmlWrapper.web.tsx
+++ b/app/src/components/homescreen/SvgXmlWrapper.web.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/UnregisteredIdCard.tsx b/app/src/components/homescreen/UnregisteredIdCard.tsx
index 8fd6c22c2..02c2f757a 100644
--- a/app/src/components/homescreen/UnregisteredIdCard.tsx
+++ b/app/src/components/homescreen/UnregisteredIdCard.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/cardSecurityBadge.ts b/app/src/components/homescreen/cardSecurityBadge.ts
index d268c3721..35c8de1df 100644
--- a/app/src/components/homescreen/cardSecurityBadge.ts
+++ b/app/src/components/homescreen/cardSecurityBadge.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/homescreen/cardStyles.ts b/app/src/components/homescreen/cardStyles.ts
index 99378dc3f..7bdd752e9 100644
--- a/app/src/components/homescreen/cardStyles.ts
+++ b/app/src/components/homescreen/cardStyles.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/native/PassportCamera.tsx b/app/src/components/native/PassportCamera.tsx
index 46b19b258..075af85e5 100644
--- a/app/src/components/native/PassportCamera.tsx
+++ b/app/src/components/native/PassportCamera.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/native/PassportCamera.web.tsx b/app/src/components/native/PassportCamera.web.tsx
index bcce2275a..2ec7483f4 100644
--- a/app/src/components/native/PassportCamera.web.tsx
+++ b/app/src/components/native/PassportCamera.web.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/native/QRCodeScanner.tsx b/app/src/components/native/QRCodeScanner.tsx
index bcac1465a..0b7a885a2 100644
--- a/app/src/components/native/QRCodeScanner.tsx
+++ b/app/src/components/native/QRCodeScanner.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/native/QRCodeScanner.web.tsx b/app/src/components/native/QRCodeScanner.web.tsx
index 4d27da17f..7c8404ab0 100644
--- a/app/src/components/native/QRCodeScanner.web.tsx
+++ b/app/src/components/native/QRCodeScanner.web.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/native/RCTFragment.tsx b/app/src/components/native/RCTFragment.tsx
index 7304d1571..b893a7364 100644
--- a/app/src/components/native/RCTFragment.tsx
+++ b/app/src/components/native/RCTFragment.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/AadhaarNavBar.tsx b/app/src/components/navbar/AadhaarNavBar.tsx
index 4a413d2ad..6d49ae504 100644
--- a/app/src/components/navbar/AadhaarNavBar.tsx
+++ b/app/src/components/navbar/AadhaarNavBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/BaseNavBar.tsx b/app/src/components/navbar/BaseNavBar.tsx
index d8429814f..8971607df 100644
--- a/app/src/components/navbar/BaseNavBar.tsx
+++ b/app/src/components/navbar/BaseNavBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/DefaultNavBar.tsx b/app/src/components/navbar/DefaultNavBar.tsx
index f1a10885c..1d106ff4a 100644
--- a/app/src/components/navbar/DefaultNavBar.tsx
+++ b/app/src/components/navbar/DefaultNavBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/DocumentFlowNavBar.tsx b/app/src/components/navbar/DocumentFlowNavBar.tsx
index 5d0481729..d14bf022c 100644
--- a/app/src/components/navbar/DocumentFlowNavBar.tsx
+++ b/app/src/components/navbar/DocumentFlowNavBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/HeadlessNavForEuclid.tsx b/app/src/components/navbar/HeadlessNavForEuclid.tsx
index a5ad4df25..c41727970 100644
--- a/app/src/components/navbar/HeadlessNavForEuclid.tsx
+++ b/app/src/components/navbar/HeadlessNavForEuclid.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/HomeNavBar.tsx b/app/src/components/navbar/HomeNavBar.tsx
index fe998873e..d29d2aa8a 100644
--- a/app/src/components/navbar/HomeNavBar.tsx
+++ b/app/src/components/navbar/HomeNavBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/IdDetailsNavBar.tsx b/app/src/components/navbar/IdDetailsNavBar.tsx
index 1345987cf..bb4cec2db 100644
--- a/app/src/components/navbar/IdDetailsNavBar.tsx
+++ b/app/src/components/navbar/IdDetailsNavBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/Points.tsx b/app/src/components/navbar/Points.tsx
index 5b71bbc2f..0085873c4 100644
--- a/app/src/components/navbar/Points.tsx
+++ b/app/src/components/navbar/Points.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/PointsNavBar.tsx b/app/src/components/navbar/PointsNavBar.tsx
index d87702122..905bd2fb5 100644
--- a/app/src/components/navbar/PointsNavBar.tsx
+++ b/app/src/components/navbar/PointsNavBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/WebViewNavBar.tsx b/app/src/components/navbar/WebViewNavBar.tsx
index 31edce8d8..f2227b35c 100644
--- a/app/src/components/navbar/WebViewNavBar.tsx
+++ b/app/src/components/navbar/WebViewNavBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/navbar/index.ts b/app/src/components/navbar/index.ts
index 77904c3f3..1e64fa090 100644
--- a/app/src/components/navbar/index.ts
+++ b/app/src/components/navbar/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/BottomActionBar.tsx b/app/src/components/proof-request/BottomActionBar.tsx
index 3f0e22919..74a870f1a 100644
--- a/app/src/components/proof-request/BottomActionBar.tsx
+++ b/app/src/components/proof-request/BottomActionBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/BottomVerifyBar.tsx b/app/src/components/proof-request/BottomVerifyBar.tsx
index 72c425884..61997eed3 100644
--- a/app/src/components/proof-request/BottomVerifyBar.tsx
+++ b/app/src/components/proof-request/BottomVerifyBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/ConnectedWalletBadge.tsx b/app/src/components/proof-request/ConnectedWalletBadge.tsx
index 905f196c1..2b1034161 100644
--- a/app/src/components/proof-request/ConnectedWalletBadge.tsx
+++ b/app/src/components/proof-request/ConnectedWalletBadge.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/DisclosureItem.tsx b/app/src/components/proof-request/DisclosureItem.tsx
index 22e506c06..4c96183be 100644
--- a/app/src/components/proof-request/DisclosureItem.tsx
+++ b/app/src/components/proof-request/DisclosureItem.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/ProofMetadataBar.tsx b/app/src/components/proof-request/ProofMetadataBar.tsx
index be7337a15..3d1afef0a 100644
--- a/app/src/components/proof-request/ProofMetadataBar.tsx
+++ b/app/src/components/proof-request/ProofMetadataBar.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/ProofRequestCard.tsx b/app/src/components/proof-request/ProofRequestCard.tsx
index 9d30dd389..3e24dc3de 100644
--- a/app/src/components/proof-request/ProofRequestCard.tsx
+++ b/app/src/components/proof-request/ProofRequestCard.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/ProofRequestHeader.tsx b/app/src/components/proof-request/ProofRequestHeader.tsx
index 4751c03f0..b76001c20 100644
--- a/app/src/components/proof-request/ProofRequestHeader.tsx
+++ b/app/src/components/proof-request/ProofRequestHeader.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/WalletAddressModal.tsx b/app/src/components/proof-request/WalletAddressModal.tsx
index e73ecd511..664506b58 100644
--- a/app/src/components/proof-request/WalletAddressModal.tsx
+++ b/app/src/components/proof-request/WalletAddressModal.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/designTokens.ts b/app/src/components/proof-request/designTokens.ts
index 5a5aa8079..8710fcab3 100644
--- a/app/src/components/proof-request/designTokens.ts
+++ b/app/src/components/proof-request/designTokens.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/icons.tsx b/app/src/components/proof-request/icons.tsx
index 9f31470b7..f3aba2ea0 100644
--- a/app/src/components/proof-request/icons.tsx
+++ b/app/src/components/proof-request/icons.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/proof-request/index.ts b/app/src/components/proof-request/index.ts
index ac1503031..7030451bd 100644
--- a/app/src/components/proof-request/index.ts
+++ b/app/src/components/proof-request/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/referral/CopyReferralButton.tsx b/app/src/components/referral/CopyReferralButton.tsx
index 2f8bf3d40..56f2a231d 100644
--- a/app/src/components/referral/CopyReferralButton.tsx
+++ b/app/src/components/referral/CopyReferralButton.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/referral/ReferralHeader.tsx b/app/src/components/referral/ReferralHeader.tsx
index 0e272ffb9..de7710638 100644
--- a/app/src/components/referral/ReferralHeader.tsx
+++ b/app/src/components/referral/ReferralHeader.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/referral/ReferralInfo.tsx b/app/src/components/referral/ReferralInfo.tsx
index 3fab59dbd..5a603b4f7 100644
--- a/app/src/components/referral/ReferralInfo.tsx
+++ b/app/src/components/referral/ReferralInfo.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/referral/ShareButton.tsx b/app/src/components/referral/ShareButton.tsx
index 3fa857767..9589e5378 100644
--- a/app/src/components/referral/ShareButton.tsx
+++ b/app/src/components/referral/ShareButton.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/starfall/StarfallLogoHeader.tsx b/app/src/components/starfall/StarfallLogoHeader.tsx
index 4a8f30352..4191d16fd 100644
--- a/app/src/components/starfall/StarfallLogoHeader.tsx
+++ b/app/src/components/starfall/StarfallLogoHeader.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/components/starfall/StarfallPIN.tsx b/app/src/components/starfall/StarfallPIN.tsx
index fb0cac18b..5da04d2cc 100644
--- a/app/src/components/starfall/StarfallPIN.tsx
+++ b/app/src/components/starfall/StarfallPIN.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/config/index.ts b/app/src/config/index.ts
index ab719595b..a23ffb505 100644
--- a/app/src/config/index.ts
+++ b/app/src/config/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/config/remoteConfig.shared.ts b/app/src/config/remoteConfig.shared.ts
index 8dd3cb262..178b390b9 100644
--- a/app/src/config/remoteConfig.shared.ts
+++ b/app/src/config/remoteConfig.shared.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/config/remoteConfig.ts b/app/src/config/remoteConfig.ts
index ff0f926c0..d3bc67628 100644
--- a/app/src/config/remoteConfig.ts
+++ b/app/src/config/remoteConfig.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/config/remoteConfig.web.ts b/app/src/config/remoteConfig.web.ts
index ddd133db4..c83cb65d9 100644
--- a/app/src/config/remoteConfig.web.ts
+++ b/app/src/config/remoteConfig.web.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/config/segment.ts b/app/src/config/segment.ts
index 763084225..66d0e8e70 100644
--- a/app/src/config/segment.ts
+++ b/app/src/config/segment.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/config/sentry.ts b/app/src/config/sentry.ts
index 9d17bee56..e4ecb0378 100644
--- a/app/src/config/sentry.ts
+++ b/app/src/config/sentry.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/config/sentry.web.ts b/app/src/config/sentry.web.ts
index d524f8948..bf5cb833d 100644
--- a/app/src/config/sentry.web.ts
+++ b/app/src/config/sentry.web.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/consts/index.ts b/app/src/consts/index.ts
index 30eb80a7e..2bbf414ba 100644
--- a/app/src/consts/index.ts
+++ b/app/src/consts/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/consts/links.ts b/app/src/consts/links.ts
index c5a427c47..a2747fabd 100644
--- a/app/src/consts/links.ts
+++ b/app/src/consts/links.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/consts/recoveryPrompts.ts b/app/src/consts/recoveryPrompts.ts
index a8e317223..8ae276596 100644
--- a/app/src/consts/recoveryPrompts.ts
+++ b/app/src/consts/recoveryPrompts.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/index.ts b/app/src/devtools/index.ts
index 61db87e9a..cc0a5c0fe 100644
--- a/app/src/devtools/index.ts
+++ b/app/src/devtools/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/mocks/index.ts b/app/src/devtools/mocks/index.ts
index 81b71ed2a..886967476 100644
--- a/app/src/devtools/mocks/index.ts
+++ b/app/src/devtools/mocks/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/mocks/nfcScanner.ts b/app/src/devtools/mocks/nfcScanner.ts
index 03ba23b01..4a6cd7a56 100644
--- a/app/src/devtools/mocks/nfcScanner.ts
+++ b/app/src/devtools/mocks/nfcScanner.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/mocks/react-native-community-blur.ts b/app/src/devtools/mocks/react-native-community-blur.ts
index f490d4f4f..c34e94571 100644
--- a/app/src/devtools/mocks/react-native-community-blur.ts
+++ b/app/src/devtools/mocks/react-native-community-blur.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/mocks/react-native-gesture-handler.ts b/app/src/devtools/mocks/react-native-gesture-handler.ts
index 3c0a63167..a831c915d 100644
--- a/app/src/devtools/mocks/react-native-gesture-handler.ts
+++ b/app/src/devtools/mocks/react-native-gesture-handler.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/mocks/react-native-passport-reader.ts b/app/src/devtools/mocks/react-native-passport-reader.ts
index e914df570..b28f1665e 100644
--- a/app/src/devtools/mocks/react-native-passport-reader.ts
+++ b/app/src/devtools/mocks/react-native-passport-reader.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/mocks/react-native-safe-area-context.js b/app/src/devtools/mocks/react-native-safe-area-context.js
index 126ed3729..2715fe440 100644
--- a/app/src/devtools/mocks/react-native-safe-area-context.js
+++ b/app/src/devtools/mocks/react-native-safe-area-context.js
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/mocks/react-native-svg.ts b/app/src/devtools/mocks/react-native-svg.ts
index b220eeddf..d75f8c55a 100644
--- a/app/src/devtools/mocks/react-native-svg.ts
+++ b/app/src/devtools/mocks/react-native-svg.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/testing/index.ts b/app/src/devtools/testing/index.ts
index 0ee0aa7e3..1f3e588d8 100644
--- a/app/src/devtools/testing/index.ts
+++ b/app/src/devtools/testing/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/devtools/testing/utils.ts b/app/src/devtools/testing/utils.ts
index b247d9724..282d14934 100644
--- a/app/src/devtools/testing/utils.ts
+++ b/app/src/devtools/testing/utils.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useAppUpdates.ts b/app/src/hooks/useAppUpdates.ts
index f53496ed1..a114df04e 100644
--- a/app/src/hooks/useAppUpdates.ts
+++ b/app/src/hooks/useAppUpdates.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useAppUpdates.web.ts b/app/src/hooks/useAppUpdates.web.ts
index 291c18989..6071fb881 100644
--- a/app/src/hooks/useAppUpdates.web.ts
+++ b/app/src/hooks/useAppUpdates.web.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useCardDimensions.ts b/app/src/hooks/useCardDimensions.ts
index ddb82cf94..d5168c95f 100644
--- a/app/src/hooks/useCardDimensions.ts
+++ b/app/src/hooks/useCardDimensions.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useConnectionModal.ts b/app/src/hooks/useConnectionModal.ts
index 75c808a8f..e28788175 100644
--- a/app/src/hooks/useConnectionModal.ts
+++ b/app/src/hooks/useConnectionModal.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useEarnPointsFlow.ts b/app/src/hooks/useEarnPointsFlow.ts
index c440edc2e..a7881780b 100644
--- a/app/src/hooks/useEarnPointsFlow.ts
+++ b/app/src/hooks/useEarnPointsFlow.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useErrorInjection.ts b/app/src/hooks/useErrorInjection.ts
index 763e1954a..6ef28e971 100644
--- a/app/src/hooks/useErrorInjection.ts
+++ b/app/src/hooks/useErrorInjection.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useFeedbackAutoHide.ts b/app/src/hooks/useFeedbackAutoHide.ts
index a86bf118a..b5513da95 100644
--- a/app/src/hooks/useFeedbackAutoHide.ts
+++ b/app/src/hooks/useFeedbackAutoHide.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useFeedbackModal.ts b/app/src/hooks/useFeedbackModal.ts
index 0fdaf651c..9c007521d 100644
--- a/app/src/hooks/useFeedbackModal.ts
+++ b/app/src/hooks/useFeedbackModal.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useHapticNavigation.ts b/app/src/hooks/useHapticNavigation.ts
index d604294cd..4fd7a38d5 100644
--- a/app/src/hooks/useHapticNavigation.ts
+++ b/app/src/hooks/useHapticNavigation.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useMnemonic.ts b/app/src/hooks/useMnemonic.ts
index aca2cd377..72dc9b50a 100644
--- a/app/src/hooks/useMnemonic.ts
+++ b/app/src/hooks/useMnemonic.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useMockDataForm.ts b/app/src/hooks/useMockDataForm.ts
index 62c52788f..6cfedb57c 100644
--- a/app/src/hooks/useMockDataForm.ts
+++ b/app/src/hooks/useMockDataForm.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useModal.ts b/app/src/hooks/useModal.ts
index c4112bf50..989530cdd 100644
--- a/app/src/hooks/useModal.ts
+++ b/app/src/hooks/useModal.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useNetInfo.ts b/app/src/hooks/useNetInfo.ts
index d4519a5b3..62570d7d8 100644
--- a/app/src/hooks/useNetInfo.ts
+++ b/app/src/hooks/useNetInfo.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useNetInfo.web.ts b/app/src/hooks/useNetInfo.web.ts
index 74955d67c..942702bee 100644
--- a/app/src/hooks/useNetInfo.web.ts
+++ b/app/src/hooks/useNetInfo.web.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/usePendingKycRecovery.ts b/app/src/hooks/usePendingKycRecovery.ts
index c712172a9..2f281f613 100644
--- a/app/src/hooks/usePendingKycRecovery.ts
+++ b/app/src/hooks/usePendingKycRecovery.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/usePoints.ts b/app/src/hooks/usePoints.ts
index 7a7686e59..8330bd361 100644
--- a/app/src/hooks/usePoints.ts
+++ b/app/src/hooks/usePoints.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/usePointsGuardrail.ts b/app/src/hooks/usePointsGuardrail.ts
index 370b36a77..e22bf8f7b 100644
--- a/app/src/hooks/usePointsGuardrail.ts
+++ b/app/src/hooks/usePointsGuardrail.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useProofDisclosureStalenessCheck.ts b/app/src/hooks/useProofDisclosureStalenessCheck.ts
index 560d53b99..525109ee6 100644
--- a/app/src/hooks/useProofDisclosureStalenessCheck.ts
+++ b/app/src/hooks/useProofDisclosureStalenessCheck.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useRecoveryPrompts.ts b/app/src/hooks/useRecoveryPrompts.ts
index ce8545b49..21fdfd568 100644
--- a/app/src/hooks/useRecoveryPrompts.ts
+++ b/app/src/hooks/useRecoveryPrompts.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useReferralConfirmation.ts b/app/src/hooks/useReferralConfirmation.ts
index c8bedaf5b..4e4ad242c 100644
--- a/app/src/hooks/useReferralConfirmation.ts
+++ b/app/src/hooks/useReferralConfirmation.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useReferralMessage.ts b/app/src/hooks/useReferralMessage.ts
index 741a31b56..89d11e46b 100644
--- a/app/src/hooks/useReferralMessage.ts
+++ b/app/src/hooks/useReferralMessage.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useReferralRegistration.ts b/app/src/hooks/useReferralRegistration.ts
index e9f4031e8..adc59c53e 100644
--- a/app/src/hooks/useReferralRegistration.ts
+++ b/app/src/hooks/useReferralRegistration.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useRegisterReferral.ts b/app/src/hooks/useRegisterReferral.ts
index bdaef462e..45beb231d 100644
--- a/app/src/hooks/useRegisterReferral.ts
+++ b/app/src/hooks/useRegisterReferral.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useSelfAppData.ts b/app/src/hooks/useSelfAppData.ts
index 913662759..f0f4f9786 100644
--- a/app/src/hooks/useSelfAppData.ts
+++ b/app/src/hooks/useSelfAppData.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useSumsubLauncher.ts b/app/src/hooks/useSumsubLauncher.ts
index a44a19dbe..3f816de79 100644
--- a/app/src/hooks/useSumsubLauncher.ts
+++ b/app/src/hooks/useSumsubLauncher.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useSumsubWebSocket.ts b/app/src/hooks/useSumsubWebSocket.ts
index f596344ea..5b92b2c75 100644
--- a/app/src/hooks/useSumsubWebSocket.ts
+++ b/app/src/hooks/useSumsubWebSocket.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/hooks/useTestReferralFlow.ts b/app/src/hooks/useTestReferralFlow.ts
index 3596459e7..7438f5cc7 100644
--- a/app/src/hooks/useTestReferralFlow.ts
+++ b/app/src/hooks/useTestReferralFlow.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/haptics/index.ts b/app/src/integrations/haptics/index.ts
index bf0d947be..4198961d4 100644
--- a/app/src/integrations/haptics/index.ts
+++ b/app/src/integrations/haptics/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/haptics/shared.ts b/app/src/integrations/haptics/shared.ts
index 26b70dc89..d3a5b6a5f 100644
--- a/app/src/integrations/haptics/shared.ts
+++ b/app/src/integrations/haptics/shared.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/haptics/trigger.ts b/app/src/integrations/haptics/trigger.ts
index 06d506c9e..7a907ace4 100644
--- a/app/src/integrations/haptics/trigger.ts
+++ b/app/src/integrations/haptics/trigger.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/haptics/trigger.web.ts b/app/src/integrations/haptics/trigger.web.ts
index 06d506c9e..7a907ace4 100644
--- a/app/src/integrations/haptics/trigger.web.ts
+++ b/app/src/integrations/haptics/trigger.web.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/keychain/index.ts b/app/src/integrations/keychain/index.ts
index 4779bb37f..99fed0f4c 100644
--- a/app/src/integrations/keychain/index.ts
+++ b/app/src/integrations/keychain/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/nfc/nfcScanner.ts b/app/src/integrations/nfc/nfcScanner.ts
index e356d5392..ea5e866ce 100644
--- a/app/src/integrations/nfc/nfcScanner.ts
+++ b/app/src/integrations/nfc/nfcScanner.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/nfc/passportReader.ts b/app/src/integrations/nfc/passportReader.ts
index d78733414..68d5a90ba 100644
--- a/app/src/integrations/nfc/passportReader.ts
+++ b/app/src/integrations/nfc/passportReader.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/sharing.ts b/app/src/integrations/sharing.ts
index c212bab30..446acc5cf 100644
--- a/app/src/integrations/sharing.ts
+++ b/app/src/integrations/sharing.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/sumsub/index.ts b/app/src/integrations/sumsub/index.ts
index 8a75be10a..c873cffc6 100644
--- a/app/src/integrations/sumsub/index.ts
+++ b/app/src/integrations/sumsub/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/sumsub/sumsubService.ts b/app/src/integrations/sumsub/sumsubService.ts
index 0ab9e9dde..54d50ba17 100644
--- a/app/src/integrations/sumsub/sumsubService.ts
+++ b/app/src/integrations/sumsub/sumsubService.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/sumsub/types.ts b/app/src/integrations/sumsub/types.ts
index 2e00ee1cb..c8dfe69b1 100644
--- a/app/src/integrations/sumsub/types.ts
+++ b/app/src/integrations/sumsub/types.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/integrations/turnkey.ts b/app/src/integrations/turnkey.ts
index 3e3ef748f..cc7cb3ca7 100644
--- a/app/src/integrations/turnkey.ts
+++ b/app/src/integrations/turnkey.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/layouts/AppLayout.tsx b/app/src/layouts/AppLayout.tsx
index 7978c2555..6297a2fc4 100644
--- a/app/src/layouts/AppLayout.tsx
+++ b/app/src/layouts/AppLayout.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/layouts/ExpandableBottomLayout.tsx b/app/src/layouts/ExpandableBottomLayout.tsx
index 73d6ac87a..0f865a3b3 100644
--- a/app/src/layouts/ExpandableBottomLayout.tsx
+++ b/app/src/layouts/ExpandableBottomLayout.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/layouts/SimpleScrolledTitleLayout.tsx b/app/src/layouts/SimpleScrolledTitleLayout.tsx
index 753896b18..0b9d3cf7f 100644
--- a/app/src/layouts/SimpleScrolledTitleLayout.tsx
+++ b/app/src/layouts/SimpleScrolledTitleLayout.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/account.ts b/app/src/navigation/account.ts
index 93f4f8f60..6f4c9dc1d 100644
--- a/app/src/navigation/account.ts
+++ b/app/src/navigation/account.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/account.web.ts b/app/src/navigation/account.web.ts
index ef28e2f68..316c6811e 100644
--- a/app/src/navigation/account.web.ts
+++ b/app/src/navigation/account.web.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/app.tsx b/app/src/navigation/app.tsx
index 3d1a1254b..766bed085 100644
--- a/app/src/navigation/app.tsx
+++ b/app/src/navigation/app.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/deeplinks.ts b/app/src/navigation/deeplinks.ts
index b2d803644..108d12d03 100644
--- a/app/src/navigation/deeplinks.ts
+++ b/app/src/navigation/deeplinks.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/devTools.tsx b/app/src/navigation/devTools.tsx
index 50c8116f9..b5cc92e91 100644
--- a/app/src/navigation/devTools.tsx
+++ b/app/src/navigation/devTools.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/documents.ts b/app/src/navigation/documents.ts
index 32aa325e3..e28d353f4 100644
--- a/app/src/navigation/documents.ts
+++ b/app/src/navigation/documents.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/home.ts b/app/src/navigation/home.ts
index 51217e115..73a22babb 100644
--- a/app/src/navigation/home.ts
+++ b/app/src/navigation/home.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/index.tsx b/app/src/navigation/index.tsx
index 72beae3b9..88a9b09fd 100644
--- a/app/src/navigation/index.tsx
+++ b/app/src/navigation/index.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/onboarding.ts b/app/src/navigation/onboarding.ts
index bf5d4a769..eec6452b6 100644
--- a/app/src/navigation/onboarding.ts
+++ b/app/src/navigation/onboarding.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/shared.ts b/app/src/navigation/shared.ts
index d95368248..f59ed0a13 100644
--- a/app/src/navigation/shared.ts
+++ b/app/src/navigation/shared.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/starfall.ts b/app/src/navigation/starfall.ts
index 6de84c5cf..5ccda3f07 100644
--- a/app/src/navigation/starfall.ts
+++ b/app/src/navigation/starfall.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/types.ts b/app/src/navigation/types.ts
index 57e10e13e..bf1087715 100644
--- a/app/src/navigation/types.ts
+++ b/app/src/navigation/types.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/navigation/verification.ts b/app/src/navigation/verification.ts
index 549986362..fe3e27330 100644
--- a/app/src/navigation/verification.ts
+++ b/app/src/navigation/verification.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/authProvider.tsx b/app/src/providers/authProvider.tsx
index bfcdf8023..64827fa2e 100644
--- a/app/src/providers/authProvider.tsx
+++ b/app/src/providers/authProvider.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/authProvider.web.tsx b/app/src/providers/authProvider.web.tsx
index 34004a220..18ec03028 100644
--- a/app/src/providers/authProvider.web.tsx
+++ b/app/src/providers/authProvider.web.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/databaseProvider.tsx b/app/src/providers/databaseProvider.tsx
index ba0fb5739..ab20d64d4 100644
--- a/app/src/providers/databaseProvider.tsx
+++ b/app/src/providers/databaseProvider.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/feedbackProvider.tsx b/app/src/providers/feedbackProvider.tsx
index 4f8381992..c488c273a 100644
--- a/app/src/providers/feedbackProvider.tsx
+++ b/app/src/providers/feedbackProvider.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/loggerProvider.tsx b/app/src/providers/loggerProvider.tsx
index 9c8073753..54b9b97c0 100644
--- a/app/src/providers/loggerProvider.tsx
+++ b/app/src/providers/loggerProvider.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/notificationTrackingProvider.tsx b/app/src/providers/notificationTrackingProvider.tsx
index 834c5088c..735bc1bc0 100644
--- a/app/src/providers/notificationTrackingProvider.tsx
+++ b/app/src/providers/notificationTrackingProvider.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/notificationTrackingProvider.web.tsx b/app/src/providers/notificationTrackingProvider.web.tsx
index 10a1e6f10..1e0165011 100644
--- a/app/src/providers/notificationTrackingProvider.web.tsx
+++ b/app/src/providers/notificationTrackingProvider.web.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/passportDataProvider.tsx b/app/src/providers/passportDataProvider.tsx
index 447330144..1f58cf521 100644
--- a/app/src/providers/passportDataProvider.tsx
+++ b/app/src/providers/passportDataProvider.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/remoteConfigProvider.tsx b/app/src/providers/remoteConfigProvider.tsx
index b9bd84dd8..5d2f5f8db 100644
--- a/app/src/providers/remoteConfigProvider.tsx
+++ b/app/src/providers/remoteConfigProvider.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/providers/selfClientProvider.tsx b/app/src/providers/selfClientProvider.tsx
index dfa74c787..6fe55f0b4 100644
--- a/app/src/providers/selfClientProvider.tsx
+++ b/app/src/providers/selfClientProvider.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/proving/index.ts b/app/src/proving/index.ts
index bbe0922cf..1c0416ce4 100644
--- a/app/src/proving/index.ts
+++ b/app/src/proving/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/proving/loadingScreenStateText.ts b/app/src/proving/loadingScreenStateText.ts
index ed5d4d5d5..aaecbce8c 100644
--- a/app/src/proving/loadingScreenStateText.ts
+++ b/app/src/proving/loadingScreenStateText.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/proving/validateDocument.ts b/app/src/proving/validateDocument.ts
index 2ace40004..4c088fc21 100644
--- a/app/src/proving/validateDocument.ts
+++ b/app/src/proving/validateDocument.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/account/recovery/AccountRecoveryChoiceScreen.tsx b/app/src/screens/account/recovery/AccountRecoveryChoiceScreen.tsx
index 8ffdc2f0f..fb83e318f 100644
--- a/app/src/screens/account/recovery/AccountRecoveryChoiceScreen.tsx
+++ b/app/src/screens/account/recovery/AccountRecoveryChoiceScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/account/recovery/AccountRecoveryScreen.tsx b/app/src/screens/account/recovery/AccountRecoveryScreen.tsx
index 49b7fab3c..af7ef333a 100644
--- a/app/src/screens/account/recovery/AccountRecoveryScreen.tsx
+++ b/app/src/screens/account/recovery/AccountRecoveryScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/account/recovery/DocumentDataNotFoundScreen.tsx b/app/src/screens/account/recovery/DocumentDataNotFoundScreen.tsx
index 45a4a6a20..84baf5046 100644
--- a/app/src/screens/account/recovery/DocumentDataNotFoundScreen.tsx
+++ b/app/src/screens/account/recovery/DocumentDataNotFoundScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/account/recovery/RecoverWithPhraseScreen.tsx b/app/src/screens/account/recovery/RecoverWithPhraseScreen.tsx
index 581ac69d0..a1a4e8f02 100644
--- a/app/src/screens/account/recovery/RecoverWithPhraseScreen.tsx
+++ b/app/src/screens/account/recovery/RecoverWithPhraseScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/account/settings/CloudBackupScreen.tsx b/app/src/screens/account/settings/CloudBackupScreen.tsx
index ab80229e7..6989b5ad6 100644
--- a/app/src/screens/account/settings/CloudBackupScreen.tsx
+++ b/app/src/screens/account/settings/CloudBackupScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/account/settings/ProofSettingsScreen.tsx b/app/src/screens/account/settings/ProofSettingsScreen.tsx
index b3ba35def..6fc74190a 100644
--- a/app/src/screens/account/settings/ProofSettingsScreen.tsx
+++ b/app/src/screens/account/settings/ProofSettingsScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/account/settings/SettingsScreen.tsx b/app/src/screens/account/settings/SettingsScreen.tsx
index 95213876e..5bfa545a2 100644
--- a/app/src/screens/account/settings/SettingsScreen.tsx
+++ b/app/src/screens/account/settings/SettingsScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/account/settings/ShowRecoveryPhraseScreen.tsx b/app/src/screens/account/settings/ShowRecoveryPhraseScreen.tsx
index 33a0ae2bf..b1880b908 100644
--- a/app/src/screens/account/settings/ShowRecoveryPhraseScreen.tsx
+++ b/app/src/screens/account/settings/ShowRecoveryPhraseScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/app/DeferredLinkingInfoScreen.tsx b/app/src/screens/app/DeferredLinkingInfoScreen.tsx
index ce21a2273..8ff3cd3d0 100644
--- a/app/src/screens/app/DeferredLinkingInfoScreen.tsx
+++ b/app/src/screens/app/DeferredLinkingInfoScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/app/GratificationScreen.tsx b/app/src/screens/app/GratificationScreen.tsx
index b487a11bb..aaac909cc 100644
--- a/app/src/screens/app/GratificationScreen.tsx
+++ b/app/src/screens/app/GratificationScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/app/LoadingScreen.tsx b/app/src/screens/app/LoadingScreen.tsx
index 4c08d608c..e95aff064 100644
--- a/app/src/screens/app/LoadingScreen.tsx
+++ b/app/src/screens/app/LoadingScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/app/ModalScreen.tsx b/app/src/screens/app/ModalScreen.tsx
index 7ad281607..271a028c6 100644
--- a/app/src/screens/app/ModalScreen.tsx
+++ b/app/src/screens/app/ModalScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/app/ReferralScreen.tsx b/app/src/screens/app/ReferralScreen.tsx
index 99448dd84..0bcf889d3 100644
--- a/app/src/screens/app/ReferralScreen.tsx
+++ b/app/src/screens/app/ReferralScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/app/SplashScreen.tsx b/app/src/screens/app/SplashScreen.tsx
index 7a81f3fc9..4ae7c0dac 100644
--- a/app/src/screens/app/SplashScreen.tsx
+++ b/app/src/screens/app/SplashScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/CreateMockScreen.tsx b/app/src/screens/dev/CreateMockScreen.tsx
index 2a36988d0..18de1ab5f 100644
--- a/app/src/screens/dev/CreateMockScreen.tsx
+++ b/app/src/screens/dev/CreateMockScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/CreateMockScreenDeepLink.tsx b/app/src/screens/dev/CreateMockScreenDeepLink.tsx
index ee03717b4..3dcffda59 100644
--- a/app/src/screens/dev/CreateMockScreenDeepLink.tsx
+++ b/app/src/screens/dev/CreateMockScreenDeepLink.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/DevFeatureFlagsScreen.tsx b/app/src/screens/dev/DevFeatureFlagsScreen.tsx
index 8d53e9948..c10913734 100644
--- a/app/src/screens/dev/DevFeatureFlagsScreen.tsx
+++ b/app/src/screens/dev/DevFeatureFlagsScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/DevHapticFeedbackScreen.tsx b/app/src/screens/dev/DevHapticFeedbackScreen.tsx
index 6abd43c8e..62363497a 100644
--- a/app/src/screens/dev/DevHapticFeedbackScreen.tsx
+++ b/app/src/screens/dev/DevHapticFeedbackScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/DevLoadingScreen.tsx b/app/src/screens/dev/DevLoadingScreen.tsx
index c43969f12..6c54e653c 100644
--- a/app/src/screens/dev/DevLoadingScreen.tsx
+++ b/app/src/screens/dev/DevLoadingScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/DevPrivateKeyScreen.tsx b/app/src/screens/dev/DevPrivateKeyScreen.tsx
index 1bf7afefa..ba13c3bc2 100644
--- a/app/src/screens/dev/DevPrivateKeyScreen.tsx
+++ b/app/src/screens/dev/DevPrivateKeyScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/DevSettingsScreen.tsx b/app/src/screens/dev/DevSettingsScreen.tsx
index 88c36a2fc..3cfb1ef69 100644
--- a/app/src/screens/dev/DevSettingsScreen.tsx
+++ b/app/src/screens/dev/DevSettingsScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/components/ErrorInjectionSelector.tsx b/app/src/screens/dev/components/ErrorInjectionSelector.tsx
index 7feb243f0..a161f9396 100644
--- a/app/src/screens/dev/components/ErrorInjectionSelector.tsx
+++ b/app/src/screens/dev/components/ErrorInjectionSelector.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/components/LogLevelSelector.tsx b/app/src/screens/dev/components/LogLevelSelector.tsx
index d919669dd..b4e4cc947 100644
--- a/app/src/screens/dev/components/LogLevelSelector.tsx
+++ b/app/src/screens/dev/components/LogLevelSelector.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/components/ParameterSection.tsx b/app/src/screens/dev/components/ParameterSection.tsx
index f99dc6c25..d3e06f7fb 100644
--- a/app/src/screens/dev/components/ParameterSection.tsx
+++ b/app/src/screens/dev/components/ParameterSection.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/components/ScreenSelector.tsx b/app/src/screens/dev/components/ScreenSelector.tsx
index 0e3084684..41afc8d56 100644
--- a/app/src/screens/dev/components/ScreenSelector.tsx
+++ b/app/src/screens/dev/components/ScreenSelector.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/components/TopicToggleButton.tsx b/app/src/screens/dev/components/TopicToggleButton.tsx
index 5aaa89503..ca04a7926 100644
--- a/app/src/screens/dev/components/TopicToggleButton.tsx
+++ b/app/src/screens/dev/components/TopicToggleButton.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/components/index.ts b/app/src/screens/dev/components/index.ts
index 4193b34e0..dedd08894 100644
--- a/app/src/screens/dev/components/index.ts
+++ b/app/src/screens/dev/components/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/hooks/useDangerZoneActions.ts b/app/src/screens/dev/hooks/useDangerZoneActions.ts
index 230fdef63..df78352cb 100644
--- a/app/src/screens/dev/hooks/useDangerZoneActions.ts
+++ b/app/src/screens/dev/hooks/useDangerZoneActions.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/hooks/useNotificationHandlers.ts b/app/src/screens/dev/hooks/useNotificationHandlers.ts
index de23c95cd..f7fd59b96 100644
--- a/app/src/screens/dev/hooks/useNotificationHandlers.ts
+++ b/app/src/screens/dev/hooks/useNotificationHandlers.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/sections/DangerZoneSection.tsx b/app/src/screens/dev/sections/DangerZoneSection.tsx
index 7a349d9a7..e6e2cb2e6 100644
--- a/app/src/screens/dev/sections/DangerZoneSection.tsx
+++ b/app/src/screens/dev/sections/DangerZoneSection.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/sections/DebugShortcutsSection.tsx b/app/src/screens/dev/sections/DebugShortcutsSection.tsx
index d933e5b18..95b26c0fe 100644
--- a/app/src/screens/dev/sections/DebugShortcutsSection.tsx
+++ b/app/src/screens/dev/sections/DebugShortcutsSection.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/sections/DevTogglesSection.tsx b/app/src/screens/dev/sections/DevTogglesSection.tsx
index 5763fbeba..551c03756 100644
--- a/app/src/screens/dev/sections/DevTogglesSection.tsx
+++ b/app/src/screens/dev/sections/DevTogglesSection.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/sections/PushNotificationsSection.tsx b/app/src/screens/dev/sections/PushNotificationsSection.tsx
index 98771d826..f674d05e5 100644
--- a/app/src/screens/dev/sections/PushNotificationsSection.tsx
+++ b/app/src/screens/dev/sections/PushNotificationsSection.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/dev/sections/index.ts b/app/src/screens/dev/sections/index.ts
index 2981b8244..a2de8c330 100644
--- a/app/src/screens/dev/sections/index.ts
+++ b/app/src/screens/dev/sections/index.ts
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/documents/aadhaar/AadhaarUploadErrorScreen.tsx b/app/src/screens/documents/aadhaar/AadhaarUploadErrorScreen.tsx
index 5dde941f5..d649ef1ce 100644
--- a/app/src/screens/documents/aadhaar/AadhaarUploadErrorScreen.tsx
+++ b/app/src/screens/documents/aadhaar/AadhaarUploadErrorScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/documents/aadhaar/AadhaarUploadScreen.tsx b/app/src/screens/documents/aadhaar/AadhaarUploadScreen.tsx
index d624ac2b8..410aee2a1 100644
--- a/app/src/screens/documents/aadhaar/AadhaarUploadScreen.tsx
+++ b/app/src/screens/documents/aadhaar/AadhaarUploadScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/documents/aadhaar/AadhaarUploadedSuccessScreen.tsx b/app/src/screens/documents/aadhaar/AadhaarUploadedSuccessScreen.tsx
index de9856b83..f72183589 100644
--- a/app/src/screens/documents/aadhaar/AadhaarUploadedSuccessScreen.tsx
+++ b/app/src/screens/documents/aadhaar/AadhaarUploadedSuccessScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/documents/management/DocumentDataInfoScreen.tsx b/app/src/screens/documents/management/DocumentDataInfoScreen.tsx
index 9cc49febd..1e7b51081 100644
--- a/app/src/screens/documents/management/DocumentDataInfoScreen.tsx
+++ b/app/src/screens/documents/management/DocumentDataInfoScreen.tsx
@@ -1,4 +1,4 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
diff --git a/app/src/screens/documents/management/IdDetailsScreen.tsx b/app/src/screens/documents/management/IdDetailsScreen.tsx
index 9f421e8c2..02d50f815 100644
--- a/app/src/screens/documents/management/IdDetailsScreen.tsx
+++ b/app/src/screens/documents/management/IdDetailsScreen.tsx
@@ -1,12 +1,12 @@
-// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc.
+// SPDX-FileCopyrightText: 2025-2026 Social Connect Labs, Inc.
// SPDX-License-Identifier: BUSL-1.1
// NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE.
import React, { useEffect, useState } from 'react';
+import LinearGradient from 'react-native-linear-gradient';
import { useSafeAreaInsets } from 'react-native-safe-area-context';
import { Button, Text, XStack, YStack, ZStack } from 'tamagui';
-import { BlurView } from '@react-native-community/blur';
-import { useFocusEffect, useNavigation } from '@react-navigation/native';
+import { useNavigation } from '@react-navigation/native';
import type { DocumentCatalog, IDDocument } from '@selfxyz/common/utils/types';
import {
@@ -36,18 +36,6 @@ const IdDetailsScreen: React.FC = () => {
const navigation = useNavigation();
const { bottom } = useSafeAreaInsets();
- const [isFocused, setIsFocused] = useState(false);
-
- // Added to unmount BlurView when screen loses focus
- useFocusEffect(
- React.useCallback(() => {
- setIsFocused(true);
- return () => {
- setIsFocused(false);
- };
- }, []),
- );
-
useEffect(() => {
const loadDocumentAndCatalog = async () => {
const allDocs = await getAllDocuments();
@@ -140,21 +128,17 @@ const IdDetailsScreen: React.FC = () => {
{ListHeader}
- {isFocused && (
-
- )}
+