Hi again guys,
Today in a few hours I finally solved this problem and I thought about sharing what information I got meanwhile.
I was always getting a blank white window because the app was searching for some files but couldn't find them.
It was strange that on development machine everything was working. So I came with idea to add an "_" to the Qt's folder name (like "C:\Qt_"), then rerun app. Voila! blank white window. Revert renaming and start "digging" for a specific folder by adding the "_". I found that app was looking for these 2 folders:
C:\Qt\Qt5.1.1\5.1.1\mingw48_32\qml\QtQuick.2 -- http://qt-project.org/doc/qt-5.1/qtd...t-windows.html didn't mention about this
C:\Qt\Qt5.1.1\5.1.1\mingw48_32\qml\Qt -- why this folder? because I am using folderlistmodel.
Now my app with these files works charm:
Rename Files
+ platforms
- qwindows.dll
+ Qt
+ labs
+ folderlistmodel
- plugins.qmltypes
- qmldir
- qmlfolderlistmodelplugin.dll
+ QtQuick.2
- plugins.qmltypes
- qmldir
- qtquick2plugin.dll
- icon_rc_res.o
- icudt52.dll
- icuin51.dll
- icuuc51.dll
- libgcc_s_dw2-1.dll
- libstdc++-6.dll
- libwinpthread-1.dll
- main.o
- moc_qtquick2applicationviewer.o
- moc_renamer.o
- qrc_resource_file.o
- Qt5Core.dll
- Qt5Gui.dll
- Qt5Network.dll
- Qt5Qml.dll
- Qt5Quick.dll
- Qt5Script.dll
- Qt5V8.dll
- qtquick2applicationviewer.o
- Rename Files.exe
- rename.o
Rename Files
+ platforms
- qwindows.dll
+ Qt
+ labs
+ folderlistmodel
- plugins.qmltypes
- qmldir
- qmlfolderlistmodelplugin.dll
+ QtQuick.2
- plugins.qmltypes
- qmldir
- qtquick2plugin.dll
- icon_rc_res.o
- icudt52.dll
- icuin51.dll
- icuuc51.dll
- libgcc_s_dw2-1.dll
- libstdc++-6.dll
- libwinpthread-1.dll
- main.o
- moc_qtquick2applicationviewer.o
- moc_renamer.o
- qrc_resource_file.o
- Qt5Core.dll
- Qt5Gui.dll
- Qt5Network.dll
- Qt5Qml.dll
- Qt5Quick.dll
- Qt5Script.dll
- Qt5V8.dll
- qtquick2applicationviewer.o
- Rename Files.exe
- rename.o
To copy to clipboard, switch view to plain text mode
On deployment "dig" method works!
Chris, Thanks a lot for your help!
Bookmarks