Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. Purpose
  2. The purpose of this document is to aide in compiling an IPA file for distribution to the Google App Store.
  3.  
  4. Software Requirements:
  5.  
  6. Xcode
  7. Visual Studio
  8. Xamarin.android extension
  9. If you plan to create the build with Visual Studio for Windows then you will need to configure a mac build server which is beyond the scope of this document.
  10.  
  11. Create Build
  12. Set build configuration to “Release”. This compiles the IPA file to use our release configs and distribution on physical devices.
  13.  
  14. Right click the mobile.Droid Visual Studio project and choose “Archive for Publishing”.
  15.  
  16. Depending on the speed of your machine this step could take a few minutes.
  17.  
  18. Once the archive bundle is completed you will be presented with the “View Archives” screen. Also found in the Build > View Archives menu option.
  19.  
  20. Note the version and code columns. The app store will only accept a version and code greater than what is already in the app store. If you need to increment these values, you do so in the AndroidManifest.xml file found in the Properties file. You will need to create another archive to proceed further.
  21.  
  22. Click the “Sign and Distribute” button found in the bottom left corner of the “View Archives” screen.
  23.  
  24. Choose the “Ad Hoc” distribution channel and click the “Next” button.
  25.  
  26. Next you need to select the appropriate Keystore “vantage.keystore in our case”. import the Keystore from dept/It/Development/PlaystoreKeyStore/vantage-key. If you already added the Key store, select ‘Use Existing Key’ and click Next.
  27.  
  28. Select Publish then select the name and the location for the Apk.
  29.  
  30. After we created the Apk we need to navigate to the play.google.com. Select ‘Release management’ then ‘App releases’.
  31.  
  32. click ‘Manage’
  33.  
  34. then click ‘Release To Beta’
  35.  
  36. click ‘MANAGE’
  37.  
  38. First click Browse files and add the Apk that we already created or Click Add from Library if you are going to roll back. You need to change the release name and the description for the release.
  39.  
  40. Click Review and check if there is warning message. Google servers will perform some more checks. If successful you will be presented with a Success message. If there are any issues, then they will need to be addressed by redoing all of the previous steps until everything is fine Upload build to App Store.
  41.  
  42. You will now want to go to the Connect to the Play Store and download the new version of the android app.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement