Adds the following API functions: - API to get signature key IDs for mobile: func (msg *PGPMessage) GetHexSignatureKeyIDsJson() []byte - API to get encryption key IDs for mobile: func (msg *PGPMessage) GetHexEncryptionKeyIDsJson() []byte - API to get the number of key packets in a PGP message: func (msg *PGPSplitMessage) GetNumberOfKeyPackets() (int, error) - API in package `helper` to encrypt a PGP message to an additional key: func EncryptPGPMessageToAdditionalKey(messageToModify *crypto.PGPSplitMessage, keyRing *crypto.KeyRing, additionalKey *crypto.KeyRing) error
48 lines
933 B
YAML
48 lines
933 B
YAML
name: Gomobile for Android
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build library for Android with gomobile
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
|
|
- name: Set up Go 1.x
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ^1.16
|
|
id: go
|
|
|
|
- name: Install NDK
|
|
uses: nttld/setup-ndk@v1
|
|
with:
|
|
ndk-version: r23c
|
|
link-to-sdk: true
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
run: |
|
|
for d in $ANDROID_NDK_HOME/../23*; do
|
|
ANDROID_NDK_HOME=$d
|
|
done
|
|
./build.sh android
|
|
find dist
|
|
|
|
- name: Upload Android artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Android build
|
|
path: dist/android
|
|
if-no-files-found: error
|