I have created a debug APK with apportable, by typing apportable in the directory of my xcode project.

Now I'm trying to create a signed APK with apportable for submission.

有帮助吗?

解决方案

Have a look at http://docs.apportable.com/publishing.html

Long story short:

  1. Create release keys in your .android-folder using keytool -genkey -v -keystore release.keystore -alias mykey -keyalg RSA -keysize 2048 -validity 10000 (or similar)
  2. Build the release-app using the keys you just created: BUILD=release ANDROID_KEYSTORE=release.keystore ANDROID_KEYSTORE_PASS=mypassword apportable build

Don't forget to save your keys in a safe place as your app-updates need to be signed by the same key.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top