|
|
@ -31,7 +31,6 @@ tag_release:
|
|
|
|
git tag -a "$(VERSION_LONG)"
|
|
|
|
git tag -a "$(VERSION_LONG)"
|
|
|
|
|
|
|
|
|
|
|
|
$(DEBUG_APK):
|
|
|
|
$(DEBUG_APK):
|
|
|
|
(go version | grep -- "-ts") || (echo Must set have Tailscale production toolchain in PATH; exit 1)
|
|
|
|
|
|
|
|
mkdir -p android/libs
|
|
|
|
mkdir -p android/libs
|
|
|
|
go run gioui.org/cmd/gogio -buildmode archive -target android -appid $(APPID) -o $(AAR) github.com/tailscale/tailscale-android/cmd/tailscale
|
|
|
|
go run gioui.org/cmd/gogio -buildmode archive -target android -appid $(APPID) -o $(AAR) github.com/tailscale/tailscale-android/cmd/tailscale
|
|
|
|
(cd android && ./gradlew assemblePlayDebug)
|
|
|
|
(cd android && ./gradlew assemblePlayDebug)
|
|
|
@ -39,7 +38,6 @@ $(DEBUG_APK):
|
|
|
|
|
|
|
|
|
|
|
|
# This target is also used by the F-Droid builder.
|
|
|
|
# This target is also used by the F-Droid builder.
|
|
|
|
release_aar:
|
|
|
|
release_aar:
|
|
|
|
(go version | grep -- "-ts") || (echo Must set have Tailscale production toolchain in PATH; exit 1)
|
|
|
|
|
|
|
|
mkdir -p android/libs
|
|
|
|
mkdir -p android/libs
|
|
|
|
go run gioui.org/cmd/gogio -ldflags "-X tailscale.com/version.Long=$(VERSIONNAME) -X tailscale.com/version.Short=$(VERSIONNAME_SHORT) -X tailscale.com/version.GitCommit=$(TAILSCALE_COMMIT) -X tailscale.com/version.ExtraGitCommit=$(OUR_VERSION)" -tags xversion -buildmode archive -target android -appid $(APPID) -o $(AAR) github.com/tailscale/tailscale-android/cmd/tailscale
|
|
|
|
go run gioui.org/cmd/gogio -ldflags "-X tailscale.com/version.Long=$(VERSIONNAME) -X tailscale.com/version.Short=$(VERSIONNAME_SHORT) -X tailscale.com/version.GitCommit=$(TAILSCALE_COMMIT) -X tailscale.com/version.ExtraGitCommit=$(OUR_VERSION)" -tags xversion -buildmode archive -target android -appid $(APPID) -o $(AAR) github.com/tailscale/tailscale-android/cmd/tailscale
|
|
|
|
|
|
|
|
|
|
|
|