diff --git a/.github/workflows/gomobile.yml b/.github/workflows/gomobile.yml index f3e1ca2..1fc5fa7 100644 --- a/.github/workflows/gomobile.yml +++ b/.github/workflows/gomobile.yml @@ -140,6 +140,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ needs.bind-go-android.outputs.release_upload_url }} - asset_path: /tmp/build/Iden3mobile.framework - asset_name: Iden3mobile.framework + asset_path: /tmp/build/Iden3mobile.framework.zip + asset_name: Iden3mobile.framework.zip asset_content_type: application/zip \ No newline at end of file diff --git a/go/iden3mobile/eventmanager.go b/go/iden3mobile/eventmanager.go index 1b28507..113828f 100644 --- a/go/iden3mobile/eventmanager.go +++ b/go/iden3mobile/eventmanager.go @@ -25,6 +25,7 @@ type EventManager struct { m sync.RWMutex } +// NewEventManager creates an event mannager func NewEventManager(storage db.Storage, eventQueue chan Event, s Sender) *EventManager { sl := db.NewStorageList([]byte(eventsStorKey))