Sample Xamarin App Crashes on iPhone Simulator
up vote
2
down vote
favorite
I have the following issue. I downloaded this sample project.
I develop primarily on Windows 10 however for the iOS part I purchased a VM from macinthecloud.com
I have a real iPhone device however since we use VM I cannot connect it, or it is too complicated/expensive. My goal was to create ipa/zip file which I can later use for UI tests through Appium. I purchased Apple Developer Account and was able to create an ipa file.
It is installed on the simulator however if you try to run it, it immediately crashes. I read everything I could find, some people suggest that probably the build architecture is wrong. The only available option from this MacOS VM is ARM64.
The following error was displayed from the simulator debug log:
Nov 10 10:13:06 DXU684 com.apple.CoreSimulator.SimDevice.AEDE77F9-AFD7-4788-9F69-9FB6FA9CDF54[63635] (com.apple.videosubscriptionsd[64306]): Service exited with abnormal code: 1
Nov 10 10:13:08 DXU684 com.apple.CoreSimulator.SimDevice.AEDE77F9-AFD7-4788-9F69-9FB6FA9CDF54[63635] (UIKitApplication:com.xamarin.standardcontrols[0x2a65][63661][64308]): Program specified by service does not contain any valid architectures for this system.
Can you please suggest how I can handle the problem? I need to run the Xamarin app on the Simulator installed through Appium (which is going well, guess is the primary problem of the build settings)
xamarin xamarin.ios appium appium-ios
add a comment |
up vote
2
down vote
favorite
I have the following issue. I downloaded this sample project.
I develop primarily on Windows 10 however for the iOS part I purchased a VM from macinthecloud.com
I have a real iPhone device however since we use VM I cannot connect it, or it is too complicated/expensive. My goal was to create ipa/zip file which I can later use for UI tests through Appium. I purchased Apple Developer Account and was able to create an ipa file.
It is installed on the simulator however if you try to run it, it immediately crashes. I read everything I could find, some people suggest that probably the build architecture is wrong. The only available option from this MacOS VM is ARM64.
The following error was displayed from the simulator debug log:
Nov 10 10:13:06 DXU684 com.apple.CoreSimulator.SimDevice.AEDE77F9-AFD7-4788-9F69-9FB6FA9CDF54[63635] (com.apple.videosubscriptionsd[64306]): Service exited with abnormal code: 1
Nov 10 10:13:08 DXU684 com.apple.CoreSimulator.SimDevice.AEDE77F9-AFD7-4788-9F69-9FB6FA9CDF54[63635] (UIKitApplication:com.xamarin.standardcontrols[0x2a65][63661][64308]): Program specified by service does not contain any valid architectures for this system.
Can you please suggest how I can handle the problem? I need to run the Xamarin app on the Simulator installed through Appium (which is going well, guess is the primary problem of the build settings)
xamarin xamarin.ios appium appium-ios
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I have the following issue. I downloaded this sample project.
I develop primarily on Windows 10 however for the iOS part I purchased a VM from macinthecloud.com
I have a real iPhone device however since we use VM I cannot connect it, or it is too complicated/expensive. My goal was to create ipa/zip file which I can later use for UI tests through Appium. I purchased Apple Developer Account and was able to create an ipa file.
It is installed on the simulator however if you try to run it, it immediately crashes. I read everything I could find, some people suggest that probably the build architecture is wrong. The only available option from this MacOS VM is ARM64.
The following error was displayed from the simulator debug log:
Nov 10 10:13:06 DXU684 com.apple.CoreSimulator.SimDevice.AEDE77F9-AFD7-4788-9F69-9FB6FA9CDF54[63635] (com.apple.videosubscriptionsd[64306]): Service exited with abnormal code: 1
Nov 10 10:13:08 DXU684 com.apple.CoreSimulator.SimDevice.AEDE77F9-AFD7-4788-9F69-9FB6FA9CDF54[63635] (UIKitApplication:com.xamarin.standardcontrols[0x2a65][63661][64308]): Program specified by service does not contain any valid architectures for this system.
Can you please suggest how I can handle the problem? I need to run the Xamarin app on the Simulator installed through Appium (which is going well, guess is the primary problem of the build settings)
xamarin xamarin.ios appium appium-ios
I have the following issue. I downloaded this sample project.
I develop primarily on Windows 10 however for the iOS part I purchased a VM from macinthecloud.com
I have a real iPhone device however since we use VM I cannot connect it, or it is too complicated/expensive. My goal was to create ipa/zip file which I can later use for UI tests through Appium. I purchased Apple Developer Account and was able to create an ipa file.
It is installed on the simulator however if you try to run it, it immediately crashes. I read everything I could find, some people suggest that probably the build architecture is wrong. The only available option from this MacOS VM is ARM64.
The following error was displayed from the simulator debug log:
Nov 10 10:13:06 DXU684 com.apple.CoreSimulator.SimDevice.AEDE77F9-AFD7-4788-9F69-9FB6FA9CDF54[63635] (com.apple.videosubscriptionsd[64306]): Service exited with abnormal code: 1
Nov 10 10:13:08 DXU684 com.apple.CoreSimulator.SimDevice.AEDE77F9-AFD7-4788-9F69-9FB6FA9CDF54[63635] (UIKitApplication:com.xamarin.standardcontrols[0x2a65][63661][64308]): Program specified by service does not contain any valid architectures for this system.
Can you please suggest how I can handle the problem? I need to run the Xamarin app on the Simulator installed through Appium (which is going well, guess is the primary problem of the build settings)
xamarin xamarin.ios appium appium-ios
xamarin xamarin.ios appium appium-ios
edited Nov 10 at 20:16
James Z
11.1k71735
11.1k71735
asked Nov 10 at 18:22
Anton Angelov
1,377815
1,377815
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
Program specified by service does not contain any valid architectures for this system.
In a IPA build, there is no x86_64
option as there are no x86-based iOS devices, only ARM-based.
What you could do is build for simulator/x86_64 and drag/drop the resulting .app
to the simulator (or install via xcrun simctl install...
, which is what everyone uses (Appium, Xamarin, ...) for controlling the simulator).
The .app
is generated in the bin/iPhoneSimulator
directory, example below:
├── bin
│ └── iPhoneSimulator
│ └── Debug
│ ├── device-builds
│ │ ├── iphone11.4-12.0
│ │ │ ├── ios_XXXX.app
│ │ └── iphone11.4-12.1
│ │ ├── ios_XXXX.app
Note: Building via Xcode 10.1 / iOS 12.1 / Xamarin.iOS 12.2.?.? will produce an .app
that produces an .plist
error when installed via drag/drop, but not when installed via simctl
. This does not occur on earlier Xamarin.iOS 12.x versions and "assume" it is a Xamarin bug as the plist is slightly malformed when compared to an Xcode build (simctl
does not seem to care, but the simulator GUI does...)
Thanks for the fast answer. I will try what you suggested and write back if worked. :)
– Anton Angelov
Nov 11 at 8:04
This worked. The app installed successfully on the simulator though drag and drop. There are some other problems with installing it through Appium but this is something for their forum. Thank you again.
– Anton Angelov
Nov 11 at 8:51
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
Program specified by service does not contain any valid architectures for this system.
In a IPA build, there is no x86_64
option as there are no x86-based iOS devices, only ARM-based.
What you could do is build for simulator/x86_64 and drag/drop the resulting .app
to the simulator (or install via xcrun simctl install...
, which is what everyone uses (Appium, Xamarin, ...) for controlling the simulator).
The .app
is generated in the bin/iPhoneSimulator
directory, example below:
├── bin
│ └── iPhoneSimulator
│ └── Debug
│ ├── device-builds
│ │ ├── iphone11.4-12.0
│ │ │ ├── ios_XXXX.app
│ │ └── iphone11.4-12.1
│ │ ├── ios_XXXX.app
Note: Building via Xcode 10.1 / iOS 12.1 / Xamarin.iOS 12.2.?.? will produce an .app
that produces an .plist
error when installed via drag/drop, but not when installed via simctl
. This does not occur on earlier Xamarin.iOS 12.x versions and "assume" it is a Xamarin bug as the plist is slightly malformed when compared to an Xcode build (simctl
does not seem to care, but the simulator GUI does...)
Thanks for the fast answer. I will try what you suggested and write back if worked. :)
– Anton Angelov
Nov 11 at 8:04
This worked. The app installed successfully on the simulator though drag and drop. There are some other problems with installing it through Appium but this is something for their forum. Thank you again.
– Anton Angelov
Nov 11 at 8:51
add a comment |
up vote
1
down vote
accepted
Program specified by service does not contain any valid architectures for this system.
In a IPA build, there is no x86_64
option as there are no x86-based iOS devices, only ARM-based.
What you could do is build for simulator/x86_64 and drag/drop the resulting .app
to the simulator (or install via xcrun simctl install...
, which is what everyone uses (Appium, Xamarin, ...) for controlling the simulator).
The .app
is generated in the bin/iPhoneSimulator
directory, example below:
├── bin
│ └── iPhoneSimulator
│ └── Debug
│ ├── device-builds
│ │ ├── iphone11.4-12.0
│ │ │ ├── ios_XXXX.app
│ │ └── iphone11.4-12.1
│ │ ├── ios_XXXX.app
Note: Building via Xcode 10.1 / iOS 12.1 / Xamarin.iOS 12.2.?.? will produce an .app
that produces an .plist
error when installed via drag/drop, but not when installed via simctl
. This does not occur on earlier Xamarin.iOS 12.x versions and "assume" it is a Xamarin bug as the plist is slightly malformed when compared to an Xcode build (simctl
does not seem to care, but the simulator GUI does...)
Thanks for the fast answer. I will try what you suggested and write back if worked. :)
– Anton Angelov
Nov 11 at 8:04
This worked. The app installed successfully on the simulator though drag and drop. There are some other problems with installing it through Appium but this is something for their forum. Thank you again.
– Anton Angelov
Nov 11 at 8:51
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
Program specified by service does not contain any valid architectures for this system.
In a IPA build, there is no x86_64
option as there are no x86-based iOS devices, only ARM-based.
What you could do is build for simulator/x86_64 and drag/drop the resulting .app
to the simulator (or install via xcrun simctl install...
, which is what everyone uses (Appium, Xamarin, ...) for controlling the simulator).
The .app
is generated in the bin/iPhoneSimulator
directory, example below:
├── bin
│ └── iPhoneSimulator
│ └── Debug
│ ├── device-builds
│ │ ├── iphone11.4-12.0
│ │ │ ├── ios_XXXX.app
│ │ └── iphone11.4-12.1
│ │ ├── ios_XXXX.app
Note: Building via Xcode 10.1 / iOS 12.1 / Xamarin.iOS 12.2.?.? will produce an .app
that produces an .plist
error when installed via drag/drop, but not when installed via simctl
. This does not occur on earlier Xamarin.iOS 12.x versions and "assume" it is a Xamarin bug as the plist is slightly malformed when compared to an Xcode build (simctl
does not seem to care, but the simulator GUI does...)
Program specified by service does not contain any valid architectures for this system.
In a IPA build, there is no x86_64
option as there are no x86-based iOS devices, only ARM-based.
What you could do is build for simulator/x86_64 and drag/drop the resulting .app
to the simulator (or install via xcrun simctl install...
, which is what everyone uses (Appium, Xamarin, ...) for controlling the simulator).
The .app
is generated in the bin/iPhoneSimulator
directory, example below:
├── bin
│ └── iPhoneSimulator
│ └── Debug
│ ├── device-builds
│ │ ├── iphone11.4-12.0
│ │ │ ├── ios_XXXX.app
│ │ └── iphone11.4-12.1
│ │ ├── ios_XXXX.app
Note: Building via Xcode 10.1 / iOS 12.1 / Xamarin.iOS 12.2.?.? will produce an .app
that produces an .plist
error when installed via drag/drop, but not when installed via simctl
. This does not occur on earlier Xamarin.iOS 12.x versions and "assume" it is a Xamarin bug as the plist is slightly malformed when compared to an Xcode build (simctl
does not seem to care, but the simulator GUI does...)
edited Nov 10 at 19:35
answered Nov 10 at 19:09
SushiHangover
49.2k53583
49.2k53583
Thanks for the fast answer. I will try what you suggested and write back if worked. :)
– Anton Angelov
Nov 11 at 8:04
This worked. The app installed successfully on the simulator though drag and drop. There are some other problems with installing it through Appium but this is something for their forum. Thank you again.
– Anton Angelov
Nov 11 at 8:51
add a comment |
Thanks for the fast answer. I will try what you suggested and write back if worked. :)
– Anton Angelov
Nov 11 at 8:04
This worked. The app installed successfully on the simulator though drag and drop. There are some other problems with installing it through Appium but this is something for their forum. Thank you again.
– Anton Angelov
Nov 11 at 8:51
Thanks for the fast answer. I will try what you suggested and write back if worked. :)
– Anton Angelov
Nov 11 at 8:04
Thanks for the fast answer. I will try what you suggested and write back if worked. :)
– Anton Angelov
Nov 11 at 8:04
This worked. The app installed successfully on the simulator though drag and drop. There are some other problems with installing it through Appium but this is something for their forum. Thank you again.
– Anton Angelov
Nov 11 at 8:51
This worked. The app installed successfully on the simulator though drag and drop. There are some other problems with installing it through Appium but this is something for their forum. Thank you again.
– Anton Angelov
Nov 11 at 8:51
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53242057%2fsample-xamarin-app-crashes-on-iphone-simulator%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown