How to publishing to .IPA from VS for Mac - c#

I wanna Publishing .IPA,This step is success,but I cant install in my Iphone via Xcode,that show :
BTW, I can use Xcode with Swift publish .IPA ,and success install it,
but I'm must use Xamarin.
Thanks!

For publishing your application on App store, you need to sign the application using distribution provisioning profile and certificate. By using distribution provisioning profile you can't install your application on device.
If you need to install your application on device please use the development provisioning profile and certificate to sign the application.
For further reference please visit -
XCode 8 A valid provisioning profile for this executable was not found

Related

xamarin android apk installs on emulator but not on device

I have an existing android application which is written in Xamarin Android. when I Adhoc distribute the APK I am able to install the APK on an emulator. However when I try to install the apk on a device I get the following error
Starts installing and then Application cannot be installed. USB debugging enabled and allow application from unknown sources is enabled.
My project properties look like this
Package signing is blank i.e, default
When I do build acrhive and save the apk. I can take the apk and run on an emulator on a different machine however when i try to install the apk on a device it fails with error 'Application not installed'
I am really new to this guys, any help is greatly appreciated. I bet i am missing something simple.
You should sign your APK. Unsigned APK cannot be installed on the real device. Check here how to sign Xamarin Android app.
I figured it out guys. You have to go into play store settings and click play protect and settings. Disable the slider and the app installs.

Publish Azure Mobile Apps Backend

When going to publish my Mobile Service Backend there is supposed to be an option that says "Microsoft Azure App Service" but instead I get two other options: "Microsoft Azure Web Apps" & "Microsoft Azure API Apps (Preview)".
The Web Apps option identifies my service plan and SQL server but wants me to create a new mobile web app url which I already have.
Neither of these show my App Service I have already created. Is it because I don't have Azure SDK v2.9 or higher (as stated by the online resource I'm using)? When going into the NuGet Packages and it only has v2.0 for Microsoft.Windows.Azure.Server and no higher version
Anybody know how to get the higher SDK without going through VS 2015 or any other options?
According to your description, I suggest you could firstly check the existing of the mobile service resource in the VS2015 server explorer.
You could open it in the view --> server explorer.
Anybody know how to get the higher SDK without going through VS 2015 or any other options?
If this resource is existing, but the publish windows doesn't show this resource.
I suggest you could update your azure SDK(the newest is 3.0.1), you could install it in this link.
Besides, I suggest you could check you have created mobile service not web app service.

Deploy app bundle without signing Windows

So, my team and I are developing an app but we don't have a code signing certificate for multiple reasons. We are using the Universal Windows blank app template, so the result is an .appxbundle. I thought I could deploy it like any other program, without a Code Signing Certificate, but I can't figure out how to do that, is it possible?
PS: using Universal Windows template for W10 on VS2017.
Thanks in advance and tell me if you don't understand,
RektibouCaribou
If you have generated package file successfully.
you can sideload apps to your device without submitting them to the Store. This lets you install them and test them out using the app package (.appx) that you have created. If you have an app that you don’t want to sell in the Store, like a line-of-business (LOB) app, you can sideload that app so that other users in your company can use it.
MSDN source:Sideload your app package

Install developed Application without developer mode

I developed an Windows 10 UWP Application. This application should be used in the company, so I build it via the built in tool of Visual Studio 2015.
To do that i followed this guide : Packaging Universal Windows apps for Windows 10
This worked fine, and i don't have a problem to install the Add-AppDevPackage.ps1 via Windows Powershell when i have the "developer mode" enabled.
Now the problem:
I don't want that my employees have to activate the developer mode. They should activate the "sideload applications" option. When this option is checked the shell allways asks me to activate the developer mode and fails if I don't activate it.
So what do I have to do, that it is enough to activate the "sideload applications" option to install my developed application?
When I built the apppackage i checked the following settings:
Do you want to build packages to upload to the Windows Store?
==> No
Generate app bundle ==> Always
Sideload apps is a more secure option than Developer mode because you cannot install apps on the device without a trusted certificate.
Requirements
Here's what you'll need to have:
Devices need to be unlocked for sideloading (unlock policy enabled)
Certificate assigned to app
Signed app package
And here's what you'll need to do:
Turn on sideloading - you can push a policy with an MDM provider, or
you can use Settings.
Trust the app - import the security certificate to the local device.
Install the app - use PowerShell to install the app package
How do you sideload an app on desktop
You can sideload apps on managed or unmanaged devices.
To turn on sideloading for managed devices
Deploy an enterprise policy.
To turn on sideloading for unmanaged devices
Open Settings.
Click Update & Security > For developers.
On Use developer features, select Sideload apps.
To import the security certificate
Open the security certificate for the appx package, and select
Install Certificate.
On the Certificate Import Wizard, select Local Machine.
Import the certificate to the Trusted Root Certification Authorities
folder.
To install the app
From the folder with the appx package, run the PowerShell
Add-AppxPackage command to install the appx package.
Source: https://technet.microsoft.com/itpro/windows/deploy/sideload-apps-in-windows-10

LTSB Windows 10 Store App

we need to install a windows store app on a windows 10 LTSB.
Is it somehow possible to legally get an appx package of a store app so we can install it or are there some other ways to do it?
If you go to Settings > Updates and Security > For Developers Go to Use Developer features and select Sideload apps.
Then you will need to install the certificate for the application, This will be bundled with you appx package. Import the certificate to the local machine under the Trusted Root Certification Authorities folder.
Finally, sideload your app onto the machine using Powershell and the Add-AppxPackage cmdlet.
You will now have the application installed on that Windows 10 Machine.
EDIT:
I notice you are wanting to install an app you havent created, already on the app store, following these steps had some success to get apps running on LTSB version of Wiindows 10.
As from http://answers.microsoft.com/en-us/windows/forum/windows_10-start/windows-10-enterprise-ltsb-no-more-built-in-metro/ab8dbbe5-ef56-47c0-98a0-4a9a7d9763b8?auth=1
Grab C:\Program Files\WindowsApps from Install.WIM on a Windows 10
Enterprise CB ISO
Place them as you see them in the WIM on your real system
Add-AppXPackage -Register 'C:\Program
Files\WindowsApps*\AppManifest.xml' -DisableDevelopmentMode
(Repeat the last step 2 more times to work around dependency hell)
Do as this article tells you to do:
https://support.microsoft.com/en-us/kb/2798317

Categories

Resources