From 9a4dd9729c927ff6d0dd522e512936c96964616b Mon Sep 17 00:00:00 2001 From: hailin Date: Wed, 31 Dec 2025 23:59:43 -0800 Subject: [PATCH] fix(android): correct tsslib path in build-apk.bat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The tsslib source code is located in service-party-android/tsslib/, not in libs/tsslib/. Updated the path and output location accordingly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../mpc-system/services/service-party-android/build-apk.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/mpc-system/services/service-party-android/build-apk.bat b/backend/mpc-system/services/service-party-android/build-apk.bat index d152cb79..44c0b40b 100644 --- a/backend/mpc-system/services/service-party-android/build-apk.bat +++ b/backend/mpc-system/services/service-party-android/build-apk.bat @@ -131,8 +131,8 @@ if not exist "app\libs\tsslib.aar" ( ) ) - :: Get the tsslib directory path (relative to service-party-android) - set "TSSLIB_DIR=..\..\libs\tsslib" + :: Get the tsslib directory path (inside service-party-android) + set "TSSLIB_DIR=tsslib" if not exist "!TSSLIB_DIR!\go.mod" ( echo [ERROR] TSS library source not found at !TSSLIB_DIR! @@ -154,7 +154,7 @@ if not exist "app\libs\tsslib.aar" ( ) :: Build the AAR (use full path to gomobile) - "!GOBIN_DIR!\gomobile.exe" bind -target=android -o "..\..\services\service-party-android\app\libs\tsslib.aar" . + "!GOBIN_DIR!\gomobile.exe" bind -target=android -o "..\app\libs\tsslib.aar" . if !errorlevel! neq 0 ( echo [ERROR] gomobile bind failed! popd