You've already forked android-go
mirror of
https://github.com/xlab/android-go.git
synced 2025-12-23 22:11:00 +02:00
22 lines
449 B
Makefile
22 lines
449 B
Makefile
all: project build
|
|
|
|
build:
|
|
ndk-build
|
|
ant debug
|
|
|
|
install:
|
|
ndk-build
|
|
ant debug install
|
|
|
|
project:
|
|
# (required) go get github.com/xlab/android-go/cmd/android-project
|
|
android-project update --target android-23 --name GolangExample --path .
|
|
|
|
project-n:
|
|
android-project update --target android-N --name GolangExample --path .
|
|
|
|
clean:
|
|
rm -rf libs obj bin gen jni/lib
|
|
rm -f proguard-project.txt project.properties
|
|
rm -f local.properties build.xml
|