Hi, I work for a company that makes an iPad app, and we have requested the user-assigned-device-name entitlement multiple times and been rejected every time.
I am familiar with the requirements listed here. I'm just wondering if anybody else who needed this entitlement ran into any surprises, e.g. "I thought that ____ was in line with their requirements but it turns out they really care about _____".
Alternatively if anyone knows how to get someone at Apple to tell us why it was rejected, that would be cool too.
Thanks!
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I had an Intel macbook and I used that to build and release my app to app store but I didn't release for 2 years. Recently a bug was reported that I needed to update the a code and make a new release with my apple silicon macbook. But I get this issue when I go to Product -> Archive.
I tried updating pods, as well as adding following line to the Podfile but no change.
platform :ios, "12.0"
target "myApp" do
use_frameworks!
pod "AFNetworking"
pod "KVNProgress"
pod "GCDWebServer"
pod "CocoaLumberjack"
pod "Intercom"
pod "GoogleWebRTC"
pod "SAMKeychain"
pod "googleapis", :path => '.'
pod 'gRPC', '1.0.0'
pod 'gRPC-Core', '1.0.0'
pod 'gRPC-ProtoRPC', '1.0.0'
pod 'gRPC-RxLibrary', '1.0.0'
pod 'BoringSSL-GRPC', '0.0.7'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'BoringSSL-GRPC'
target.source_build_phase.files.each do |file|
if file.settings && file.settings['COMPILER_FLAGS']
flags = file.settings['COMPILER_FLAGS'].split
flags.reject! { |flag| flag == '-GCC_WARN_INHIBIT_ALL_WARNINGS' }
file.settings['COMPILER_FLAGS'] = flags.join(' ')
end
end
end
end
end
Nothing worked for me. What do I do now? I appreciate any help
Topic:
Developer Tools & Services
SubTopic:
Xcode