0

gomobile build is a simple go mobile tool to build app, it is easy to build ios / android app cross platform, but can gomobile build an app (ios/android) to be published on the App Store or Google Play?

Here is a document to show how to publish go build app on Google Play.

However, there is no document on how to publish an app on the App Store

how to do this, is it possible ?

I tried on appstore, it reports ERROR ITMS-90161: "Invalid Provisioning Profile. The provisioning profile included in the bundle com.company.app [Payload/App.app] is invalid

lmiguelvargasf
  • 63,191
  • 45
  • 217
  • 228
hui zhang
  • 123
  • 8

1 Answers1

0

First you need to create a runnable apk file using gomobile toolset.

Given that you have gomobile initialized and NDK installed

gomobile build -target=android -v -o=myApp.apk path/to/your/goProject

Or install directly into your phone (to test out first) with

gomobile install .....

If you use gomobile build, you may have to first sign your app using either jarsigner or android studio

Then follow instructions from Google to finally publish into appstore

There is an example Gomobile project on Github for more info

Minty
  • 1,163
  • 11
  • 18