Questions tagged [iosdeployment]

93 questions
2
votes
0 answers

How can I run a iOS App which has been built on MacOSX using the `Test` build containing `XCTest` unit tests from Linux to a iOS device

I have been researching this for the past few weeks and working to try to see if how it is possible to setup https://github.com/facebook/WebDriverAgent and in particular XCTest's to be able to be deployed and ran in test mode from Linux. At this…
ALM
  • 2,555
  • 7
  • 31
  • 45
2
votes
1 answer

urlSession download from remote url fail - CFNetworkDownload_gn6wzc.tmp appeared

I was trying to download file from remote url using urlSession. But when the download is completed an unexpected file appeared named CFNetworkDownload_gn6wzc.tmpthen i cannot open that file using uidocumentinteractioncontroller. What is that file?…
2
votes
1 answer

Do I need sepearate distribution certificate and development certificate for each of my app?

I have searched for this question and what I have got from most searches is that: We can only have 3 "distribution certificates at most" and it is a good practice to use ONLY ONE distribution certificate for all the apps. However what about the…
Manas
  • 3,060
  • 4
  • 27
  • 55
2
votes
2 answers

Do we need to use the same Certificates and Provisioning Profiles to distribute new app to replace old app in iOS?

I am developing an iOS (using Ionic) and it will eventually replace an app currently in App Store. I am using the same app id as the old one. Do I need the same Certificates and Provisioning Profiles which was used to build old app in order to…
1
vote
1 answer

Install a private pod using Github actions

I'm trying to deploy an app using Github actions, and I have a lot of issues due to the fact that I have a private pod in my app. I looked at various suggestions how to solve this but none of the answers I found helped me in deploying the app. Here…
Nermin Sehic
  • 594
  • 6
  • 22
1
vote
0 answers

How set default text color for iOS when developing on RN

When developing an application on React Native, it became necessary to set the color for all text in the application using native methods. In the case of android, this does not cause problems (we just set the desired color in the styles.xml) but…
1
vote
1 answer

Clarification: For Jenkins fastlane setup for ios shall i need xcode in my machine

Clarification: For Jenkins fastlane setup for ios shall i need xcode in my machine I need to know shall i need Xcode in my machine to setup jenkins + fastlane for my ios app In this doc steps, I not see it was essential to use xcode for jenkins…
sejn
  • 2,040
  • 6
  • 28
  • 82
1
vote
1 answer

Ad Hoc iOS App Distribution to several hundred devices

I am trying to find out some up to date information on releasing of an iOS app Ad Hoc . I was recently tasked to finish up development on an app that was about 90% complete which was being developed in Dart/Flutter but only being deployed on iOS(for…
1
vote
0 answers

How to include cookies of custom domain in http requests from mobile browsers to a local server?

I am developing a web application which until now was targeted to desktop-browsers only. The client interacts with a backend that requires a cookie of a specific domain (e.g. "my.app.com"). For development, I run both client and backend locally on…
Tal
  • 31
  • 1
  • 2
1
vote
1 answer

upload image to server in iOS swift

I'm new in swift. I have no idea about how to upload image from UIImage Piker Controller to server using Alamofire. I tried many solution from stackOverflow And Google etc from last week unfortunately. But I can't figure out it. Please anyone Help…
Hanzla Rafique
  • 63
  • 1
  • 10
1
vote
2 answers

Windows Visual Studio 2019 doesn't detect iphone XR iOS 13.4.1

I'm new to xamarin. I wrote a simple "Hello World" app using VS 2019 on Windows 10 which runs successfully on the emulators. I have an iMAC on my network and it is successfully connected to my Windows visual studio on Win10 machine. No update…
Zuzlx
  • 1,246
  • 14
  • 33
1
vote
1 answer

How to store data in array from web api

I am using Xcode 11.3.1, Swift 5 and trying to show data in table view through web api. So after fetching the data I want to store "name" data in countryList. countryList is an array. URLSession.shared.dataTask(with: url!) { (data, response, error)…
1
vote
0 answers

Locator Problem in IOS 13.3 in appium inspector?

I can't able to find the drop down elements in App source of Appium inspector.Before IOS 13 version options was showing but in IOS 13.3 elements are missing. My dev hasn't any idea about this issues. could suggest what dev should do? Appium…
1
vote
1 answer

UIImageView inside UICollectionViewCell image won't fit properly

I have a UICollectionView and each UICollectionViewCell is a custom class with a UIImageView @interface MyCollectionViewCell : UICollectionViewCell @property (weak, nonatomic) IBOutlet UIImageView *image; @end Then I have an image I would like to…
Irelia
  • 3,407
  • 2
  • 10
  • 31
1
vote
1 answer

UITableView updating results from UISearchBar

I have a ViewController with a UISearchBar and UITablevView. The tableview just displays a list of items in the array, but I would like for it to display the filtered list of items with filteredArrayUsingPredicate. I'm able to get the filtered array…
Irelia
  • 3,407
  • 2
  • 10
  • 31