Post

Replies

Boosts

Views

Activity

Reply to Xcode Cloud failed to install brew?
You can use gem bundler in ci_post_clone.sh # !/bin/sh   cd ..   echo ">>> SETUP ENVIRONMENT" echo 'export GEM_HOME=$HOME/gems' >>~/.bash_profile echo 'export PATH=$HOME/gems/bin:$PATH' >>~/.bash_profile export GEM_HOME=$HOME/gems export PATH="$GEM_HOME/bin:$PATH"   echo ">>> INSTALL BUNDLER" gem install bundler --install-dir $GEM_HOME   echo ">>> INSTALL DEPENDENCIES" bundle install   echo ">>> INSTALL PODS" bundle exec pod install You also create Gemfile same level with ci_scripts folder in Gemfile source "https://rubygems.org" gem 'cocoapods'
Mar ’23
Reply to Apple Search Ads - Create Certificate button missing
You can use OAuth2 replaces key and certificate credentials authentication in previous versions of the API.   Please note, at this time, you need to invite a new user to your Apple Search Ads account and provide them one of the API user roles (API Account Manager, API Account Read Only) in order to create and edit an API Public Key in UI. Only these API user roles above are able to create and edit an API Public Key within your Apple Search Ads account. For more details regarding Apple Search Ads API process, please reference: Implementing OAuth for the Apple Search Ads API Note: Apple updated Apple Search Ads API v4 For example: When you have accessToken try this curl curl --request GET \ --url https://api.searchads.apple.com/api/v4/me \ --header 'Authorization: Bearer {access_token}' \ --header 'X-AP-Context: orgId={your_orgID}
Topic: App & System Services SubTopic: General Tags:
Jun ’21
Reply to Xcode Cloud failed to install brew?
You can use gem bundler in ci_post_clone.sh # !/bin/sh   cd ..   echo ">>> SETUP ENVIRONMENT" echo 'export GEM_HOME=$HOME/gems' >>~/.bash_profile echo 'export PATH=$HOME/gems/bin:$PATH' >>~/.bash_profile export GEM_HOME=$HOME/gems export PATH="$GEM_HOME/bin:$PATH"   echo ">>> INSTALL BUNDLER" gem install bundler --install-dir $GEM_HOME   echo ">>> INSTALL DEPENDENCIES" bundle install   echo ">>> INSTALL PODS" bundle exec pod install You also create Gemfile same level with ci_scripts folder in Gemfile source "https://rubygems.org" gem 'cocoapods'
Replies
Boosts
Views
Activity
Mar ’23
Reply to rvictl not working on big sur and ios 14 beta 3
This's post has solution https://developer.apple.com/forums/thread/655329?answerId=674594022#674594022
Replies
Boosts
Views
Activity
Aug ’21
Reply to Search Ad - Campaign status is running BUT no impression
Actually, the campaign running by Apple Search Ads API is having problem. If the campaign create manually is work well
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to Search Ad - Campaign status is running BUT no impression
Me too, you are not alone :)
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to (High Priority) XCode11: Recording UI test in Xcode, but the record button doesn't do anything
Update Xcode 13.0 beta. It's work :)
Replies
Boosts
Views
Activity
Jun ’21
Reply to Apple Search Ads - Create Certificate button missing
You can use OAuth2 replaces key and certificate credentials authentication in previous versions of the API.   Please note, at this time, you need to invite a new user to your Apple Search Ads account and provide them one of the API user roles (API Account Manager, API Account Read Only) in order to create and edit an API Public Key in UI. Only these API user roles above are able to create and edit an API Public Key within your Apple Search Ads account. For more details regarding Apple Search Ads API process, please reference: Implementing OAuth for the Apple Search Ads API Note: Apple updated Apple Search Ads API v4 For example: When you have accessToken try this curl curl --request GET \ --url https://api.searchads.apple.com/api/v4/me \ --header 'Authorization: Bearer {access_token}' \ --header 'X-AP-Context: orgId={your_orgID}
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to (High Priority) XCode11: Recording UI test in Xcode, but the record button doesn't do anything
I had the same problem. I downloaded Xcode 12.4, and it works well. You guys can try and using both Xcode versions. I hope Apple engineers will fix to next version
Replies
Boosts
Views
Activity
May ’21