Skip to content

fixup! ffi: convert to using gomobile #22

fixup! ffi: convert to using gomobile

fixup! ffi: convert to using gomobile #22

Workflow file for this run

name: Build Android
on:
push:
jobs:
build:
runs-on: ubuntu-latest-8core
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up NDK
uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r24
local-cache: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.1'
- name: Install gomobile
run: |
go install golang.org/x/mobile/cmd/gomobile@latest
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Build AAR
run: gomobile bind -target=android -androidapi 26 -o imessage.aar ./imessage/ffi
# - name: Publish to GitHub Packages
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: ./android/gradlew -p android :library:publish
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: aar
path: ffi.aar