Can I delete the tvOS from react native project?

后端 未结 2 2210
离开以前
离开以前 2021-02-19 01:25

Eventually, I will be submitting a react native app to the app store but the app will only run on iOS, not tvOS. Will I be able to delete these targets and stuff and submit the

2条回答
  •  闹比i
    闹比i (楼主)
    2021-02-19 02:02

    Yes you can delete it but first delete appName-tvOSTests then delete appName-tvOS (otherwise xcode will crash).
    After that remove this code from ios/Podfile :

    target 'appName-tvOS' do
      # Pods for appName-tvOS
    
      target 'appName-tvOSTests' do
        inherit! :search_paths
        # Pods for testing
      end
    
    end
    
    

提交回复
热议问题