앱 위젯에서 구분선 리사이즈 안되는 문제 수정

This commit is contained in:
Macbook
2026-06-14 17:54:26 +09:00
parent 7f5e7b22d2
commit ead2ba6b3a
9 changed files with 229 additions and 65 deletions
+7
View File
@@ -43,6 +43,13 @@ sign_release_apk() {
--ks-pass pass:goldenchart --key-pass pass:goldenchart "$signed"
mkdir -p "$(dirname "$LOCAL_APK")"
cp "$signed" "$LOCAL_APK"
VERSION_NAME="$(grep -E 'versionName[[:space:]]+"' "$ROOT/app/android/app/build.gradle" | head -1 | sed -E 's/.*versionName[[:space:]]+"([^"]+)".*/\1/' || true)"
if [[ -n "$VERSION_NAME" ]]; then
printf '%s\n' "$VERSION_NAME" > "${LOCAL_APK%.apk}.version"
log "버전 sidecar: ${LOCAL_APK%.apk}.version → $VERSION_NAME"
fi
log "서명 완료: $LOCAL_APK"
}