Phonegap remote build: where is the apk file? - apk

I'm using Phongap v. 6 on Windows 7 x64 for creating Android apps. I'm trying to build remotely in this way (obviously using a valid Adobe ID):
phonegap remote build andriod
The process is successful but where I can find the apk file?
Thanks

They are on the Phonegap Build server.
You have to download them from the Phonegap Build website.

Login to your phonegap build account and click on apk button to download the apk file. You can also use qrcode on phonegap site and scan it on your device to download the apk/ipa.

Related

Automatically building and deploying React Native app using Jenkins?

Packaging my little react native app for Android so that it runs e.g. with Expo on an online App testing service like Appetize or Runthatapp is easy. Up to now I relied on online services to do the building for me, but that is no sustainable solution, that's why I want to do it on my own now.
I understand that for compiling my react native app for iOS I have to somehow run Xcode (on a virtual box). I am able use Android Studio to build my APK files using the GUI, but how do I do that automatically?
I am looking for a way how to automatize that process using Jenkins (either under Ubuntu or under Windows). How would I approach that? My architectural idea looks as follows:
Step 1. Jenkins pulls source code and additional artwork (i.e. logos) from GIT
Step 2. Building and packaging.
2.1 Jenkins initiates the Android Studio and starts building the .apk-file, ideally via command line.
2.2 Jenkins initiates Xcode with some fancy long command line, and out comes
a nice .ipa file.
Step 3. Jenkins takes both files and archives them
Step 4. Deployment
4.1 Jenkins automatically deploys to Google Play Store using their API
4.2 Jenkins automatically deploys to Apple App Store using their API
4.3 Jenkins automatically deploys it to the Amazon App Store.
I am struggling with step 2 and 4, but the priority is the automatic building (step 2). Any help is appreciated, even links to tutorials. What I am after is an explanation on who to steer Android Studio and Xcode by command line.
Resources
How to run apk file online?
What is the (file) format of iOS/iPhone apps?
Deploy to Google Play Store via API
Automatic app deployment to Amazon store
https://stackoverflow.com/questions/57107024/is-there-any-official-way-or-api-to-get-app-reviews-for-ios-apps
Deploy/Publish Android app made with React Native
Unable to build APK file on Jenkins (react native)

Error Message APK Not Installed In Xamarin Form

I am new in Xamarin Forms, And I have created one sample application in vs 2017 community version 15.9.12, All works fine during dubbing and testing, and it run very fine on emulator. But the problem is after creating APK and trying to install it in other android devices its showing error message, "APK not installed", I have searched a lot, but not able to find any solution, let me share you images what i am trying to do.
Setting Android Minimum And Maximum Version here
Setting Release Option As provided guide on internet
Archiving project
successfully created apk
Created Android Key Store
With save as option created apk and trying to open in other android device
At last I am trying to install created apk in other android devices and its showing error message "APK Not Installed".
Can anyone help?
Thanks In Advance :)
Happy programming.
If you have Signed the Android Application Package, hava a try follow.
Drop the SIGNED APK file onto your phone
Install using the SIGNED APK file
When installing, a PLAY STORE prompt will appear...choose "Install Anyway"

How to generate .apk for my cross platform application in visual studio 2015 (Xamarin)

I am currently making a cross platform mobile application . Where in I am targeting Android, IOS as well as the Windows OS.I have just made a hello world form and debugged it for android. Runs perfect on the emulator. Now want to send the .apk file to my coworker to see on her Android Mobile. How do i generate the .apk file???
Right click on solution with Android app and click on Archive more HERE
You have to run your application in release mode. The generated apk is located in the bin\release folder of the android project

PhoneGap Build doesn't update the app

PhoneGap Build shows successful build and log for Android, shows updated version on the PhoneGap Build web page, but when I install Android shows old version and the APK file is also old. I know for sure because I just put 2Mb of dummy images and the sise of the APK hasn't changed, so the problem is with build
Edit: it was a 1-day glitch, it works OK now
we see this problem every now and then. Our solution to it is to remove and ad back in the affected platform. Assuming you are also using the latest cordova tools do the following:
cordova platform remove android
cordova platform add android

Downloaded IPA to Windows 8...now what? Can I upload to itunes from Windows or do I I need a mac?

I have Windows 8. I built and Android application in Eclipse, translated it through Cordova then zipped it and uploaded to phonegap build. I got an Apple provisioning certificate using OpenSSL. I set up my app(icon, pics, description) in iTunes connect which tells me my app is ready for upload. I downloaded the IPA from phonegap. Now what? Do I have to upload the IPA (file downloaded from phonegap) to Itunes via a mac? Itunes wants me to download Application Loader. However, this is only available for mac. So...what do I have to do to get my app on itunes?

Resources