From b8fb85c5f061a051c20a49dffbacf6f8e309d450 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Tue, 24 Mar 2026 20:26:27 -0700 Subject: [PATCH] Add apk target to Makefile for release APK builds Co-Authored-By: Claude Opus 4.6 (1M context) --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3a9a3e4..e55330e 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ AVD ?= DC-1 PACKAGE := net.metacircular.engpad ACTIVITY := $(PACKAGE).MainActivity -.PHONY: build test lint clean run devrun all +.PHONY: build test lint clean run devrun apk all # Build everything (compile + test + lint) all: lint test build @@ -26,6 +26,11 @@ test-one: lint: ./gradlew lint +# Build release APK +apk: + ./gradlew assembleRelease + @echo "APK: app/build/outputs/apk/release/app-release-unsigned.apk" + # Clean build artifacts clean: ./gradlew clean