19 lines
281 B
Makefile
19 lines
281 B
Makefile
|
all:
|
||
|
gomobile install
|
||
|
|
||
|
install:
|
||
|
go install golang.org/x/mobile/cmd/gomobile@latest
|
||
|
|
||
|
init:
|
||
|
|
||
|
init:
|
||
|
|
||
|
|
||
|
build:
|
||
|
# gomobile build -androidapi 16 -target=android -o myapp.apk main.go
|
||
|
gomobile build -target=android -o myapp.apk main.go
|
||
|
|
||
|
adb-logcat:
|
||
|
# this worked
|
||
|
adb logcat |grep jwc
|