What is latest in Appium version for iOS and Android? - appium

What is new in Appium 1.13 version, can the same be used for automating both Android and iOS apps

There were few extra capabilities are added for Android. Appium is for Automating both iOS and Android. Please check the release notes here :
Appium Release V1.13

Related

How to set Xamarin iOS SDK version for building on Azure Devops

I have an iOS project targeting SDK version 14.5 on all configurations but when I build it via an Azure Devops pipeline it targets version 13.5. Upon releasing I receive the following message.
SDK Version Issue. This app was built with the iOS 13.2 SDK. All iOS
apps submitted to the App Store must be built with the iOS 14 SDK or
later, included in Xcode 12 or later.
This tells me it is not reading the value on the project configuration.
To resolve this I had to update our hosted build agent OS to use a version of MacOS running XCode 12. At the time of writing this it was MacOS 10.15.
For more info on what software the hosted build agent operating systems come with visit this link: https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops&tabs=yaml#notes-on-choosing-hosted-macos

How I add iOS simulators in android Studio Linux

I am writing a simple flutter app on Linux(ubuntu 20.04) using Android Studio(4.1.1). I am able to test my app on android emulators well. Could I know there is any feasibility to test my flutter application in an iOS simulator without moving to mac or connect an iOS device?
You need the mac to compile on IOS devices or use emulators, the project even running on android stuido uses the xcode compiler.

ERROR ITMS-90725: "This app was built with the iOS 12.1 SDK. New apps for iPhone or iPad must be built with the iOS 13 SDK or later."

I use build phonegap for build IOS app....I genarated .ipa file with last version of phonegap build but when I try yo upload .ipa file to apple store it give that error
ERROR ITMS-90725: "SDK Version Issue. This app was built with the iOS 12.1 SDK. New apps for iPhone or iPad must be built with the iOS 13 SDK or later."
what should I do?
You'll need to use a service which does support the latest version of XCode (currently 11.6), like VoltBuilder, Ionic or Monaca. It doesn't look like PhoneGap is ever going to be updated.
Disclosure: I'm one of the developers of VoltBuilder.
Currently there is no way to build on PhoneGap Build Cloud targeting iOS 13, since it requires cordova 6.0.0 and the lastest phonegap-cli avaiable is 9.0.0 which uses cordova 5.0.1 which targets iOS 12.1 and xcode 10.
You can build localy using cordova 6.0.0, if you don't have a mac you can try macincloud or another could solution as monaca and others.

Details: Appium's IosDriver does not support xcode version 8.3.2

I am having difficulties running a mobile automated test.
I get the following error
A new session could not be created. Details: Appium's IosDriver does not support xcode version 8.3.2. Apple has deprecated UIAutomation. Use the "XCUITest" automationName capability instead. (Selenium::WebDriver::Error::SessionNotCreatedError)
I am currently using Xcode version 8.3.2 and Appium version 1.0.0.
Does anyone have any suggestions?
In Xcode 8, UIAutomation is deprecated and it supports XCUITest. So if you have written the desired capability for automation name as UI Automation, change it to:
desiredcapabilities.setCapability("automationName", "XCUITest");
Also, Xcode 8+ works only with appium 1.6+. So upgrade your Appium to the latest version.
Ref: https://github.com/appium/appium-dot-app/issues/575
The error message tells you that the IosDriver is deprecated. Take a look here: https://discuss.appium.io/t/xcodebuild-failed-with-code-65-warning-the-server-did-not-provide-any-stacktrace-information-command-duration-or-timeout-32-63-seconds/12756/4

how to install simulator 7.0 in Xcode 5.0.2

Am completely new to Mac and infact this is my first use of Apple system, am using titanium appcelerator to build my app. I installed Xcode 5.0.2 which comes with iOS 7.0.3 simulator. But appcelerator 3.1.3.GA sdk supports upto 7.0 simulator. So is there a way to downgrade simulator to 7.0 version? and as I build my app completely with 3.1.3.GA sdk am not interested in again building with 3.2.0.GA sdk, because of some errors. So please help me downgrade simulator to 7.0 version if possible. Thank you.
I hope that you need to run in the lower versions as well, but you have been created a App with the newer architecture of XCODE . If so, then you need to change the architecture as in build settings:
and also check deployment target:

Resources