Ios build give error on ipad 13.7

Hello, i worked on ionic version 3 app i want to publish it to apple store i build it successfully but when submit it to review the app rejected because

We discovered one or more bugs in your app when reviewed on iPad running iOS 13.7 on Wi-Fi.Your app launches and shows an unresponsive white screen with no other content.

then i start new ionic 3 project and i faced same problem.
I tried to build using cordova ios v6 and v5 but i have the same problem.
i build it using this commands

ionic cordova platform add ios
ionic cordova run ios --prod -l --external --emulator --consolelogs --target="C62C1D15-1BDF-433C-BD72-2D9957C5F0F7"

when i run it on iphone emulator it work well but on ipad give me this issues

[app-scripts] [00:02:36]  console.warn: Ionic Native: tried calling StatusBar.styleDefault, but Cordova is not available. Make sure to 
[app-scripts]             a) run in a real device or simulator and b) include cordova.js in your index.html 
[app-scripts] [00:02:36]  console.warn: Ionic Native: tried calling SplashScreen.hide, but Cordova is not available. Make sure to a) 
[app-scripts]             run in a real device or simulator and b) include cordova.js in your index.html

using

cordova v10.0.0
ionic cli v6.11.0

@nazeeh Try to run the project directly from XCode, opening the platform folder.

Build before (build, not run) correctly the version for iOS and selected iPad device, then you run such files in the editor.

Before, remember to install the iPad simulator:
https://developer.apple.com/download/more

Same problem here. Any ideas on how to solve this?

try this steps

ionic cordova platform add ios
ionic cordova prepare ios
ionic cordova build ios --prod

then open workspace from project-name/platforms/ios and try to build from Xcode .
If not solved your issue try:

ionic cordova platform rm ios
ionic cordova platform add ios
ionic cordova prepare ios

then open workspace from project-name/platforms/ios and try to build from Xcode .