Re: [Interest] black screen with iOS app over airplay?

2017-05-12 Thread bralchenko
Yes, I think that’s the one. Regards, Boris Ralchenko. > On May 12, 2017, at 5:08 PM, Patrick Stinson wrote: > > Do you mean QMainWindow? That is the class that I am deriving from. > > On May 12, 2017, at 1:38 PM, bralche...@ics.com > wrote: > >> On main

Re: [Interest] black screen with iOS app over airplay?

2017-05-12 Thread bralchenko
On main window, in our case it was derived from QQuickView. Regards, Boris Ralchenko. > On May 12, 2017, at 4:33 PM, Patrick Stinson wrote: > > Oh excellent. Which object do you call setGeometry on? > > On May 12, 2017, at 1:13 PM, bralche...@ics.com > wro

Re: [Interest] black screen with iOS app over airplay?

2017-05-12 Thread bralchenko
Patrick, you have to setGeometry(QRect screenGeometry) explicitly. screenGeometry should be queried from iOS directly, like this: const CGRect r = [[UIScreen mainScreen] bounds]; return QRect(0, 0, r.size.width, r.size.height); We had similar problem, black screen with AirPlay or with HDMI don

Re: [Interest] iOS 10 / iPad Mini 2 and Qt - Icon gets scaled to full screen with transparent background when launching app.

2017-03-31 Thread bralchenko
That probably explains the situation. iOS expects to show something while app launches, so there is LaunchScreen.xib that developer can customize. I am not sure what iOS displays when there is no Launch screen. Normally with Qt examples I see white screen with name of the app, there is Launch.xi

Re: [Interest] iOS 10 / iPad Mini 2 and Qt - Icon gets scaled to full screen with transparent background when launching app.

2017-03-31 Thread bralchenko
It looks like the icon became part of LaunchScreen.xib, that’s what I would verify first. Regards, Boris Ralchenko. > On Mar 31, 2017, at 7:14 AM, Nuno Santos wrote: > > Sorry, > > I mean’t iPad Mini 2 > > Nuno Santos > Founder / CEO / CTO > www.imaginando.pt > +351 91 621 69 62 >

[Interest] iOS - QML app and AirPlay

2017-03-16 Thread bralchenko
I was trying to show my QML app running on iOS on appleTV via AirPlay, and I got black screen.. even though the app is working nicely on iPad. We see the same behaviour when trying to show the same app with LightingToHDMI cable. I tried several QML apps from Examples, some works with AirPlay, so

Re: [Interest] QMAKE_ASSET_CATALOGS

2017-01-03 Thread bralchenko
While not exactly QMAKE_ASSET_CATALOGS, but that’s how we manage assets, including iOS specific files. This is iOS section of the pro file. # iOS ios { deployment.files = $$PWD/assets QMAKE_BUNDLE_DATA += deployment assets_catalogs.files = $$files($$PWD/ios_files/*.xcassets) QM

Re: [Interest] Building Qt from source for iOS - make install fails

2016-11-22 Thread bralchenko
Thanks Jake for your response. 5.8 did not work for me either, but I did not capture the exact error, it was related to signing, similar to 5.7.1. I have tried to build 5.8 something like 5 days ago, may have changed since. Regards, Boris Ralchenko. > On Nov 22, 2016, at 4:12 PM, J

[Interest] Building Qt from source for iOS - make install fails

2016-11-22 Thread bralchenko
Hi, I was trying to build Qt from source specifically for iOS, I wanted to check something. The build succeeds, but make install fails on number of version, I tried 5.6.2, 5.7.1 and 5.8. Interesting thing is that errors are different for each one. I tried to build and to install without any cha