Skip to content

Commit 8a54daf

Browse files
author
mirror-bot
committed
Release v26.02.1_1250
1 parent df280d6 commit 8a54daf

File tree

1,444 files changed

+32814
-26177
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,444 files changed

+32814
-26177
lines changed

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
# Maintain dependencies for GitHub Actions
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: "monthly"
13+
14+
- package-ecosystem: "gradle"
15+
directory: "/"
16+
schedule:
17+
interval: "monthly"

.github/workflows/baselineprofile.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
baseline:
88
name: generate-baselineprofile
9-
runs-on: macOS-latest
9+
runs-on: macos-latest-xlarge
1010

1111
env:
1212
EMULATOR_API_LEVEL: '30'
@@ -15,28 +15,28 @@ jobs:
1515

1616
steps:
1717
- name: Checkout to git repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
lfs: 'true'
2121

2222
- name: Check LFS files
2323
uses: actionsdesk/lfs-warning@v3.3
2424

2525
- name: Install JDK
26-
uses: actions/setup-java@v4
26+
uses: actions/setup-java@v5
2727
with:
2828
distribution: 'zulu'
2929
java-version: '22'
3030

3131
- name: Setup Gradle
32-
uses: gradle/actions/setup-gradle@v4
32+
uses: gradle/actions/setup-gradle@v5
3333

3434
- name: Build benchmark
3535
id: gradle
3636
run: ./gradlew :apps:wallet:instance:main:generateReleaseBaselineProfile
3737

3838
- name: AVD cache
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
id: avd-cache
4141
with:
4242
path: |

.github/workflows/beta.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: Android Beta Build
2+
3+
on:
4+
workflow_dispatch:
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
beta-build:
12+
name: Build Beta APK
13+
runs-on: macos-latest-xlarge
14+
15+
steps:
16+
- name: Checkout to git repository
17+
uses: actions/checkout@v6
18+
19+
- name: Get VERSION_CODE from commit timestamp
20+
run: echo "VERSION_CODE=$(git log -1 --format=%ct)" >> $GITHUB_ENV
21+
22+
- name: Setup Java
23+
uses: actions/setup-java@v5
24+
with:
25+
java-version: '21'
26+
distribution: 'temurin'
27+
28+
- name: Cache Gradle Wrapper
29+
uses: actions/cache@v5
30+
with:
31+
path: ~/.gradle/wrapper
32+
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
33+
34+
- name: Accept Android SDK licenses
35+
run: yes | $ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager --licenses
36+
37+
- name: Setup Gradle
38+
uses: gradle/actions/setup-gradle@v5
39+
40+
- name: Decode Keystore
41+
run: echo "${{ secrets.ANDROID_DIST_SIGNING_KEY }}" | base64 -d > ${{ github.workspace }}/release.keystore
42+
43+
- name: Build Beta APK
44+
run: |
45+
./gradlew :apps:wallet:instance:main:assembleDefaultRelease \
46+
--no-daemon \
47+
--no-build-cache \
48+
--no-configuration-cache \
49+
-Pandroid.injected.signing.store.file=${{ github.workspace }}/release.keystore \
50+
-Pandroid.injected.signing.store.password=${{ secrets.TONKEEPER_UPLOAD_STORE_PASSWORD }} \
51+
-Pandroid.injected.signing.key.alias=${{ secrets.TONKEEPER_UPLOAD_KEY_ALIAS }} \
52+
-Pandroid.injected.signing.key.password=${{ secrets.TONKEEPER_UPLOAD_KEY_PASSWORD }}
53+
54+
- name: Upload Beta APK to artifacts
55+
uses: actions/upload-artifact@v6
56+
with:
57+
name: tonkeeper-beta-${{ env.VERSION_CODE }}
58+
path: apps/wallet/instance/main/build/outputs/apk/default/release/*.apk

.github/workflows/cd.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

.github/workflows/claude.yml

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
name: Claude PR Review
2+
3+
on:
4+
pull_request:
5+
types: [ opened, reopened ]
6+
branches:
7+
- dev
8+
- 'release/**'
9+
10+
permissions:
11+
pull-requests: write
12+
contents: read
13+
id-token: write
14+
15+
jobs:
16+
overview:
17+
if: contains(github.event.pull_request.body, '/claude-overview') || contains(github.event.pull_request.body, '@claude')
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v6
21+
22+
- name: Main changes summary
23+
uses: anthropics/claude-code-action@v1
24+
with:
25+
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
26+
settings: '{"permissions":{"allow":["Bash(gh pr comment:*)","Bash(gh pr diff:*)","Bash(gh pr view:*)"]}}'
27+
prompt: |
28+
REPO: ${{ github.repository }}
29+
PR NUMBER: ${{ github.event.pull_request.number }}
30+
31+
You are a senior software engineer reviewing a pull request.
32+
33+
Provide a concise summary of the main changes.
34+
Group changes by area/module when possible.
35+
Use bullet points. Be specific but brief.
36+
Do NOT mention security concerns.
37+
38+
If commit messages or the diff contain task numbers (e.g. TK-123, TK-456),
39+
list them at the top of your summary under a "Related Tasks" heading.
40+
41+
After composing your summary, post it as a single PR comment using:
42+
gh pr comment <PR_NUMBER> --repo ${{ github.repository }} --body "<your summary>"
43+
claude_args: |
44+
--max-turns 8
45+
--model claude-sonnet-4-5-20250929
46+
--allowedTools "Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*)"
47+
48+
review:
49+
if: contains(github.event.pull_request.body, '/claude-review') || contains(github.event.pull_request.body, '@claude')
50+
runs-on: ubuntu-latest
51+
steps:
52+
- uses: actions/checkout@v6
53+
54+
- uses: anthropics/claude-code-action@v1
55+
with:
56+
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
57+
settings: '{"permissions":{"allow":["Bash(gh pr comment:*)","Bash(gh pr diff:*)","Bash(gh pr view:*)"]}}'
58+
prompt: |
59+
REPO: ${{ github.repository }}
60+
PR NUMBER: ${{ github.event.pull_request.number }}
61+
62+
You are a senior software engineer performing a thorough code review on an Android (Kotlin) project.
63+
64+
Provide actionable feedback. Focus on:
65+
- Bugs and logic errors
66+
- Performance issues
67+
- Security issues
68+
- Code readability and maintainability
69+
- Kotlin/Android best practices
70+
- Error handling gaps
71+
- Potential race conditions or threading issues
72+
73+
For each issue found, reference the file name and provide a clear explanation.
74+
Do NOT comment on things that are correct or well-written — only comment on actual problems.
75+
If the code looks good and has no issues, post a single brief PR comment saying so.
76+
Do not invent problems. Be constructive and concise.
77+
78+
Use inline comments for specific issues found in the code.
79+
claude_args: |
80+
--max-turns 25
81+
--model claude-opus-4-6
82+
--allowedTools "mcp__github_inline_comment__create_inline_comment,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*)"

.github/workflows/debug.yml

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
name: Android Debug Build
2+
3+
on:
4+
push:
5+
branches:
6+
- 'dev'
7+
- 'release/**'
8+
pull_request:
9+
types: [ opened, synchronize ]
10+
workflow_dispatch:
11+
12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
14+
cancel-in-progress: true
15+
16+
jobs:
17+
debug-build:
18+
name: Build Debug APK
19+
runs-on: macos-latest-xlarge
20+
21+
steps:
22+
- name: Checkout to git repository
23+
uses: actions/checkout@v6
24+
25+
- name: Get VERSION_CODE from commit timestamp
26+
run: echo "VERSION_CODE=$(git log -1 --format=%ct)" >> $GITHUB_ENV
27+
28+
- name: Setup Java
29+
uses: actions/setup-java@v5
30+
with:
31+
java-version: '21'
32+
distribution: 'temurin'
33+
34+
- name: Cache Gradle Wrapper
35+
uses: actions/cache@v5
36+
with:
37+
path: ~/.gradle/wrapper
38+
key: gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
39+
40+
- name: Accept Android SDK licenses
41+
run: yes | $ANDROID_SDK_ROOT/cmdline-tools/latest/bin/sdkmanager --licenses
42+
43+
- name: Setup Gradle
44+
uses: gradle/actions/setup-gradle@v5
45+
46+
- name: Decode Keystore
47+
run: echo "${{ secrets.TONKEEPER_DEBUG_STORE_FILE }}" | base64 -d > ${{ github.workspace }}/internal.keystore
48+
49+
- name: Build Debug APK
50+
run: |
51+
./gradlew :apps:wallet:instance:main:assembleDefaultDebug \
52+
--no-daemon \
53+
--no-build-cache \
54+
--no-configuration-cache \
55+
-Pandroid.injected.signing.debug.file=${{ github.workspace }}/internal.keystore \
56+
-Pandroid.injected.signing.debug.password=${{ secrets.TONKEEPER_DEBUG_STORE_PASSWORD }} \
57+
-Pandroid.injected.signing.debug.key.alias=${{ secrets.TONKEEPER_DEBUG_KEY_ALIAS }} \
58+
-Pandroid.injected.signing.debug.key.password=${{ secrets.TONKEEPER_DEBUG_KEY_PASSWORD }}
59+
60+
- name: Upload Debug APK to artifacts
61+
uses: actions/upload-artifact@v6
62+
with:
63+
name: tonkeeper-debug-${{ env.VERSION_CODE }}
64+
path: apps/wallet/instance/main/build/outputs/apk/default/debug/*.apk

0 commit comments

Comments
 (0)