Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

Forums

OverviewSearch › Search Results for '1c'

Viewing 9 results - 46 through 54 (of 54 total)
  • Re: MultiResolutionImage – am I using it wrong on


    Alec

    Yep, posted it below.

    It might be worth noting, I’ve done the scaling on the MultiResolutionImage itself rather than the item that contains it. This means the item still slots nicely into the row. The item is set to the logical size required rather than the height/width of the MultiResolutionImage.

     

    import Felgo 3.0
    import QtQuick 2.0
    import QtGraphicalEffects 1.0
    
    GameWindow {
        id: gameWindow
    
        licenseKey: "A5C3874F0D2A214F501F3FE369F5C770C8B1332B5C1C445416B9AF7BBE0F4B223F84B79114791BE7A02A9AEF47A736E8D63E2178F431FFFBCC0BE5B52C8305B50FA4BE8CBF58EE5E7A9C498E14874907D63944720D146A60FC21544D70096FC9D645D60074FA329127868822DB9C4C5843CE71C7A423C873DC9916B2F9F2E2673ABBC16FE9843E53C31E2C9FF7BFC859D9E3E7482C0F9D949368210A3C00A87E58650D99A2D6098DD075CC297988E2ECD4147BC14C3314D8AD0B59AD3AF98D825AD03F42BE25193153B8216457E05E87B4019DA5DE2737DEC69BEF55E7DDB8E496697AA9720156F7EC01C7648AF81E946C78402DF7BCE3B04628B22AAB517F4B725D97ABE3FBCEED9980216DC70B32B8E01B4E5202ED82136C80629EC6A2E968A55BD2E2CE21D24EF3AA2864E51088ED"
    
        activeScene: scene
    
        width: 960
        height: 640
    
        Scene {
            id: scene
    
            // the "logical size" - the scene content is auto-scaled to match the GameWindow size
            width: 480
            height: 320
    
            Rectangle {
                color: 'coral'
                anchors.fill: scene
            }
    
            Row{
                id: row
                anchors.centerIn: parent
                
                Item{
                    id: item
                    height: 100
                    width: 100
    
                    MultiResolutionImage{
                        id: img1
                        source: "../assets/vplay-logo.png"
                        visible: false
                        transformOrigin: Item.TopLeft
                        height: 100 / internalContentScaleFactorForImages
                        width: 100 / internalContentScaleFactorForImages
                        scale: internalContentScaleFactorForImages
                        anchors.centerIn: parent
                    }
                    ColorOverlay{
                        anchors.fill: item
                        source: img1
                        color: "black"
                        opacity: 0.5
                    }
                }
                
    
                Item{
                    transformOrigin: Item.TopLeft
                    width: img2.width
                    height: img2.height
                    Image{
                        id: img2
                        source: "../assets/vplay-logo.png"
                        visible: false
                        height: 100
                        width: 100
                    }
                    ColorOverlay{
                        anchors.fill: img2
                        source: img2
                        color: "black"
                        opacity: 0.5
                    }
                }
            }
    
        }
    }
    
    

     

    Thanks again for your help Chris.

     

    alb

    Re: Windows Phone 8 deployment on


    Alex
    Felgo Team

    Hi Caesar,

    my hints about the path to the *.pro file were really important! This has been the source of your errors all along.

    Qt: switch to shadow build in command line -> qmake.exe with path to pro file from project folder

    Felgo: switch to shadow build in command line -> qmake.exe just with pro file from the current shadow build folder, no path (because we copy the pro file to the shadow build folder and pre-create the structure for deployment of assets and resources!)

     

    “file:///C:/Data/Programs/%7B3EE0499E-48EA-4C50-8D92-9999CD1CAB1E%7D/Install/qml/Main.qml:-1 File not found”
    -> this results out of the fact that you used the pro file from your project folder and not from the shadow build folder, which messes up your dependencies for Felgo projects.

     

    Regarding packaging the precompiled shaders, I will post it in about half hour when i arrive at the office 😉

    Cheers,
    Alex

    • This reply was modified 9 years, 8 months ago by  Alex.
    • This reply was modified 9 years, 8 months ago by  Alex.

    Re: Windows Phone 8 deployment on


    Caeser

    Hi Alex and Chris. after all the Trys i managed to get the Windows Emulator to work.

    Following from

    http://www.youtube.com/watch?v=1pTeysNkRkk

    All was possible the touch interaction app was running on the emulator. i actually used the Microsoft Visual Express for Windows Phone 8

    Debug Win32

    Now i run a QtQuick HelloWorld Application and it works fine

    But V-play projects got this error

    Unhandled exception at 0x6FA421EA (Qt5Qmld.dll) in V-playSample.exe: 0xC0000005: Access violation reading location 0x00000004.

     

    OThers

     

    ‘V-playSample.exe’ (Win32): Loaded ‘E:\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\V-playSample.exe’. Symbols loaded.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\NTDLL.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\KERNELBASE.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\Qt5Quickd.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\Qt5Qmld.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\Qt5Widgetsd.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\Qt5Networkd.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\Qt5Guid.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\Qt5Cored.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\Msvcp110d.dll’. Symbols loaded.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\Msvcr110d.dll’. Symbols loaded.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\COMBASE.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\libGLESv2d.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\PhoneAppModelHost.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\KERNEL32LEGACY.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\MSVCRT.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\RPCRT4.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\MINCOREDLOAD.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\D3D11.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\EMClient.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\CoreUI.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\TaskHostSvcs.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\DXGI.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\USER32.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\GDI32.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\OLEAUT32.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\SecRuntime.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\SECHOST.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\orientation.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\ShellChromeAPI.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\ModernApiExtHost.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\CRYPTBASE.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\BCRYPTPRIMITIVES.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\AppModelCore.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\AppChromeAPI.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\PsmApp.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\WINTYPES.DLL’. Cannot find or open the PDB file.
    The thread 0x1640 has exited with code 0 (0x0).
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\CRYPTSP.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\RSAENH.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\wpglobutil.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\ADVAPI32LEGACY.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\wpcoreutil.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\SSPICLI.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\PCWUM.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\AppModelProxy.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\NtUserSynchExtHost.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\Windows.Phone.Devices.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\CFGMGR32.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\Windows.Storage.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\PhotosAPI.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\urlmon.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\dsclient.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\ZTrace.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\ZMediaLib_Client.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\PhotosServiceClient.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\iertutil.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\IE_STUBS.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\ie_shims.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\OLE32_WP.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\phoneinfo.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\SHCORE.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\SHLWAPI.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\LegacyHelper.dll’. Cannot find or open the PDB file.
    io\qfsfileengine_win.cpp:1062: unsigned char *__thiscall QFSFileEnginePrivate::map(__int64,__int64,enum QFileDevice::MemoryMapFlags): Unimplemented code.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\platforms\qwinrtd.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\libEGLd.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\Windows.System.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume7\programs\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Install\d3dcompiler_qtd.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\DXGIDebug.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\D3D10WARP.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\d3d11_1SDKLayers.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\CompClient.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\WINDOWSCODECS.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\THREADPOOLWINRT.DLL’. Cannot find or open the PDB file.
    QThread::start: Failed to set thread priority (not implemented)
    WARNING: VPlayFileUtils: did not find the file or directory: “qml/config.json”
    System: loading config file from: “”
    [WARNING] readFile – No filename specified!
    WARNING: cant find config.json file
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\Windows.Networking.Connectivity.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\WS2_32.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\IPHLPAPI.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\DNSAPI.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\CmNet.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\DpuApi.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\NSI.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\WINNSI.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\CfmClient.dll’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\MSWSOCK.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\FWPUCLNT.DLL’. Cannot find or open the PDB file.
    ‘V-playSample.exe’ (Win32): Unloaded ‘\Device\HarddiskVolume4\Windows\System32\FWPUCLNT.DLL’
    VPlayApplication: importPathList: (“qrc:/qml”, “C:/Data/Programs/{3ee0499e-48ea-4c50-8d92-9999cd1cab1e}/Install”, “C:/Qt/5.3/winphone_x86/qml”, “qrc:/plugins”)
    VPlayApplication: read QQmlEngine::offlineStoragePath(), used for storing SQL databases: “C:\Data\Users\DefApps\AppData\{3EE0499E-48EA-4C50-8D92-9999CD1CAB1E}\Local\QML\OfflineStorage”
    setting extrafileSelectorList to (“sd”) , allFileSelectors: (“sd”, “en_US”, “windows”, “winrt”, “winphone”)
    setting internalContentScaleFactorForImages which is used for MultiResolutionImage contextProperty to 1
    VPlayApplication: setMainQmlFileName called for qmlFileName “qml/Main.qml” , used file: “qml/Main.qml”
    QQmlApplicationEngine failed to load component
    file:///C:/Data/Programs/%7B3EE0499E-48EA-4C50-8D92-9999CD1CAB1E%7D/Install/qml/Main.qml:-1 File not found

    First-chance exception at 0x6FA421EA (Qt5Qmld.dll) in V-playSample.exe: 0xC0000005: Access violation reading location 0x00000004.
    ‘V-playSample.exe’ (Win32): Loaded ‘\Device\HarddiskVolume4\Windows\System32\errorhandlingext.dll’. Cannot find or open the PDB file.
    Unhandled exception at 0x6FA421EA (Qt5Qmld.dll) in V-playSample.exe: 0xC0000005: Access violation reading location 0x00000004.

     

     

    Problem Building Felgo 2.0 Games on


    Diego

    I’m creating the zip with the content of the qml folder and when I upload that to the build server i keep getting:

    No *Main.qml file in zip archive, please make sure to zip the contents of your QML folder (not the folder itself).

    No config.json file in zip archive, please make sure to zip the contents of your QML folder (not the folder itself).

     

    Can anyone please explain me how to build games using the 2.0 api?? I’ve my game almost ready.


    Jt

    Hey guys i’m new to v-play using the trial version trying to evaluate whether or not i should buy it and i did the FlappyBird tutorial and ran into some issues running it, i also tried some other projects, demos and official source codes and still got the same issues.  It seems to me as if it can’t find a certain image?  I’m running a late 2009 MacBook with Maverick OS X 10.9.1  Here are the following errors and screenshots of my project.
    this is the log

    Starting /Users/JTbuckner 1/Desktop/FlappyBird-build-<wbr />desktop-Desktop_Qt_4_8_1_for_<wbr />GCC__Qt_SDK__Debug/FlappyBird.<wbr />app/Contents/MacOS/FlappyBird.<wbr />..

    dyld: Library not loaded: /tmp/qt-stuff-85167/source/qt-<wbr />everywhere-opensource-src-4.8.<wbr />1/Desktop/Qt/4.8.1/gcc/lib/<wbr />QtDeclarative.framework/<wbr />Versions/4/QtDeclarative

    Referenced from: /Users/JTbuckner 1/Desktop/FlappyBird-build-<wbr />desktop-Desktop_Qt_4_8_1_for_<wbr />GCC__Qt_SDK__Debug/FlappyBird.<wbr />app/Contents/MacOS/FlappyBird

    Reason: image not found

    The program has unexpectedly finished.

    /Users/JTbuckner 1/Desktop/FlappyBird-build-<wbr />desktop-Desktop_Qt_4_8_1_for_<wbr />GCC__Qt_SDK__Debug/FlappyBird.<wbr />app/Contents/MacOS/FlappyBird exited with code 0

     

    Screenshot of my file and .pro file along with an error i got upon installation of Felgo if that matters at all

    https://imageshack.com/a/img842/3798/mimh.png
    https://imageshack.com/a/img823/736/gf93.png

     

    in the .pro file i changed

    CONFIG += v-play

    to

    CONFIG += v-play_daily

    but had the same errors

     

    i found the exported folder and i ran it and said it couldn’t be opened do the a problem (the app)

    Process:         FlappyBird [39855]
    Path:            /Users/USER/Desktop/*/<wbr />FlappyBird.app/Contents/MacOS/<wbr />FlappyBird
    Identifier:      net.vplay.builds.FlappyBird
    Version:         ???
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [2499]
    Responsible:     FlappyBird [39855]
    User ID:         505

    Date/Time:       2014-03-03 09:33:19.722 -0600
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  65A49AFC-0E98-4CC4-2858-<wbr />19429CBC1F51

    Sleep/Wake UUID: 9FE91CC5-B477-4F19-817B-<wbr />B1D82046F335

    Crashed Thread:  0

    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000

    Application Specific Information:
    dyld: launch, loading dependent libraries

    Dyld Error Message:
    Library not loaded: /tmp/qt-stuff-85167/source/qt-<wbr />everywhere-opensource-src-4.8.<wbr />1/Desktop/Qt/4.8.1/gcc/lib/<wbr />QtDeclarative.framework/<wbr />Versions/4/QtDeclarative
    Referenced from: /Users/USER/Desktop/*/<wbr />FlappyBird.app/Contents/MacOS/<wbr />FlappyBird
    Reason: image not found

    Binary Images:
    0x7fff69825000 –     0x7fff69858817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-<wbr />87A851B570FF> /usr/lib/dyld
    0x7fff8aef9000 –     0x7fff8aef9fff  com.apple.Cocoa (6.8 – 20) <E90E99D7-A425-3301-A025-<wbr />D9E0CD11918E> /System/Library/Frameworks/<wbr />Cocoa.framework/Versions/A/<wbr />Cocoa
    0x7fff908c7000 –     0x7fff908d8ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-<wbr />D24ED5DD492E> /usr/lib/libz.1.dylib
    0x7fff92597000 –     0x7fff926eaff7  com.apple.audio.toolbox.<wbr />AudioToolbox (1.9 – 1.9) <A0B7B007-9BD8-30E2-B644-<wbr />47856DA29FEE> /System/Library/Frameworks/<wbr />AudioToolbox.framework/<wbr />Versions/A/AudioToolbox
    0x7fff953ae000 –     0x7fff953bcfff  com.apple.opengl (9.0.83 – 9.0.83) <AF467644-7B1D-327A-AC47-<wbr />CECFCAF61990> /System/Library/Frameworks/<wbr />OpenGL.framework/Versions/A/<wbr />OpenGL

    Model: MacBook6,1, BootROM MB61.00C8.B00, 2 processors, Intel Core 2 Duo, 2.26 GHz, 4 GB, SMC 1.51f53
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D31<wbr />47314631
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D31<wbr />47314631
    AirPort: spairport_wireless_card_type_<wbr />airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK2555GSXF, 250.06 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898, 8.13 GB
    USB Device: Built-in iSight
    USB Device: USB Receiver
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus:
    And some more logs

     

    10:43:20: Running build steps for project FlappyBird…

    10:43:21: Starting: “/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/bin/<wbr />qmake” ‘/Users/JTbuckner 1/Desktop/FlappyBird-master/<wbr />FlappyBird.pro’ -r -spec macx-g++ CONFIG+=declarative_debug

    Project MESSAGE: Adding custom info.plist

    Project MESSAGE: Adding custom entitlements file

    Project MESSAGE: Felgo SDK path: /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily

    Project MESSAGE: Felgo target path: /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily

    Project MESSAGE: Felgo library path: /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/lib

    Project MESSAGE: Felgo qml path: /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/qml

    Project MESSAGE: Felgo include path: /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/include

    Project MESSAGE: VPlayPluginsGenericPath: /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/plugins/<wbr />generic

    Project MESSAGE: VPlayPluginsPlatformPath: /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/plugins/macx

    Project MESSAGE: QML_IMPORT_PATH: /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/qml /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/plugins/macx /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/plugins/<wbr />generic

    Project MESSAGE: MAINPROFILEPWD: /Users/JTbuckner 1/Desktop/FlappyBird-master

    10:43:24: The process “/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/bin/<wbr />qmake” exited normally.

    10:43:24: Starting: “/usr/bin/make” -w

    make: Entering directory `/Users/JTbuckner 1/Desktop/FlappyBird-build-<wbr />desktop-Desktop_Qt_4_8_1_for_<wbr />GCC__Qt_SDK__Debug’

    g++ -c -pipe -g -gdwarf-2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5 -Wall -W -DPLATFORM_MAC -DQT_DECLARATIVE_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/mkspecs/<wbr />macx-g++ -I../FlappyBird-master -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtCore.framework/Versions/4/<wbr />Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtNetwork.framework/Versions/<wbr />4/Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtNetwork -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtGui.framework/Versions/4/<wbr />Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtGui -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtDeclarative.framework/<wbr />Versions/4/Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include -I/Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />include -I/Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer -I. -I../FlappyBird-master -I. -F/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib -o main.o ../FlappyBird-master/main.cpp

    In file included from ../FlappyBird-master/main.cpp:<wbr />1:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />include/vplayapplication.h:4:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtCore.framework/Versions/4/<wbr />Headers/QObject:1:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtCore.framework/Versions/4/<wbr />Headers/qobject.h:47:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qobjectdefs.h:45:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qnamespace.h:45:

    /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qglobal.h:328:6: warning: “This version of Mac OS X is unsupported” [-W#warnings]

    # warning “This version of Mac OS X is unsupported”

    ^

    1 warning generated.

    g++ -c -pipe -g -gdwarf-2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5 -Wall -W -DPLATFORM_MAC -DQT_DECLARATIVE_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/mkspecs/<wbr />macx-g++ -I../FlappyBird-master -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtCore.framework/Versions/4/<wbr />Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtNetwork.framework/Versions/<wbr />4/Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtNetwork -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtGui.framework/Versions/4/<wbr />Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtGui -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtDeclarative.framework/<wbr />Versions/4/Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include -I/Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />include -I/Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer -I. -I../FlappyBird-master -I. -F/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib -o qmlapplicationviewer.o /Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer/<wbr />qmlapplicationviewer.cpp

    In file included from /Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer/<wbr />qmlapplicationviewer.cpp:11:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer/<wbr />qmlapplicationviewer.h:14:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative/<wbr />QDeclarativeView:1:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative/<wbr />qdeclarativeview.h:45:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qdatetime.h:45:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qstring.h:45:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qchar.h:45:

    /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qglobal.h:328:6: warning: “This version of Mac OS X is unsupported” [-W#warnings]

    # warning “This version of Mac OS X is unsupported”

    ^

    In file included from /Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer/<wbr />qmlapplicationviewer.cpp:11:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer/<wbr />qmlapplicationviewer.h:14:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative/<wbr />QDeclarativeView:1:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative/<wbr />qdeclarativeview.h:45:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qdatetime.h:47:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qsharedpointer.h:50:

    /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qsharedpointer_impl.h:<wbr />595:43: warning: field ‘d’ is uninitialized when used here [-Wuninitialized]

    inline QWeakPointer(X *ptr) : d(ptr ? d->getAndRef(ptr) : 0), value(ptr)

    ^

    2 warnings generated.

    /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/bin/moc -DPLATFORM_MAC -DQT_DECLARATIVE_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/mkspecs/<wbr />macx-g++ -I../FlappyBird-master -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtCore.framework/Versions/4/<wbr />Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtNetwork.framework/Versions/<wbr />4/Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtNetwork -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtGui.framework/Versions/4/<wbr />Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtGui -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtDeclarative.framework/<wbr />Versions/4/Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include -I/Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />include -I/Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer -I. -I../FlappyBird-master -I. -F/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib -D__APPLE__ -D__GNUC__ /Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer/<wbr />qmlapplicationviewer.h -o moc_qmlapplicationviewer.cpp

    g++ -c -pipe -g -gdwarf-2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5 -Wall -W -DPLATFORM_MAC -DQT_DECLARATIVE_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/mkspecs/<wbr />macx-g++ -I../FlappyBird-master -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtCore.framework/Versions/4/<wbr />Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtNetwork.framework/Versions/<wbr />4/Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtNetwork -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtGui.framework/Versions/4/<wbr />Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtGui -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib/<wbr />QtDeclarative.framework/<wbr />Versions/4/Headers -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative -I/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include -I/Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />include -I/Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer -I. -I../FlappyBird-master -I. -F/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib -o moc_qmlapplicationviewer.o moc_qmlapplicationviewer.cpp

    In file included from moc_qmlapplicationviewer.cpp:<wbr />10:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer/<wbr />qmlapplicationviewer.h:14:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative/<wbr />QDeclarativeView:1:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative/<wbr />qdeclarativeview.h:45:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qdatetime.h:45:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qstring.h:45:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qchar.h:45:

    /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qglobal.h:328:6: warning: “This version of Mac OS X is unsupported” [-W#warnings]

    # warning “This version of Mac OS X is unsupported”

    ^

    In file included from moc_qmlapplicationviewer.cpp:<wbr />10:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/FelgoSDK/daily/<wbr />qmlapplicationviewer/<wbr />qmlapplicationviewer.h:14:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative/<wbr />QDeclarativeView:1:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtDeclarative/<wbr />qdeclarativeview.h:45:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qdatetime.h:47:

    In file included from /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qsharedpointer.h:50:

    /Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/include/<wbr />QtCore/qsharedpointer_impl.h:<wbr />595:43: warning: field ‘d’ is uninitialized when used here [-Wuninitialized]

    inline QWeakPointer(X *ptr) : d(ptr ? d->getAndRef(ptr) : 0), value(ptr)

    ^

    2 warnings generated.

    g++ -headerpad_max_install_names -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5 -o FlappyBird.app/Contents/MacOS/<wbr />FlappyBird main.o qmlapplicationviewer.o moc_qmlapplicationviewer.o -F/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib -L/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/lib -framework Cocoa -framework OpenGL -framework OpenAL -framework AudioToolbox -L/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/lib/third_<wbr />party -lcurl -lfreetype -ljpeg -lpng14 -lxml2 -lz -L/Applications/FlappyBirds/<wbr />Desktop/Qt/4.8.1/gcc/../../../<wbr />FelgoSDK/daily/lib -lVPlay_debug -framework QtDeclarative -L/usr/local/pgsql/lib -L/tmp/qt-stuff-85167/source/<wbr />qt-everywhere-opensource-src-<wbr />4.8.1/Desktop/Qt/4.8.1/gcc/lib -F/tmp/qt-stuff-85167/source/<wbr />qt-everywhere-opensource-src-<wbr />4.8.1/Desktop/Qt/4.8.1/gcc/lib -framework QtScript -framework QtCore -framework QtSvg -framework QtGui -framework QtSql -framework QtXmlPatterns -framework QtNetwork

    ld: warning: directory not found for option ‘-L/usr/local/pgsql/lib’

    ld: warning: directory not found for option ‘-L/tmp/qt-stuff-85167/source/<wbr />qt-everywhere-opensource-src-<wbr />4.8.1/Desktop/Qt/4.8.1/gcc/<wbr />lib’

    ld: warning: directory not found for option ‘-F/tmp/qt-stuff-85167/source/<wbr />qt-everywhere-opensource-src-<wbr />4.8.1/Desktop/Qt/4.8.1/gcc/<wbr />lib’

    Copying application data…

    make: Leaving directory `/Users/JTbuckner 1/Desktop/FlappyBird-build-<wbr />desktop-Desktop_Qt_4_8_1_for_<wbr />GCC__Qt_SDK__Debug’

    10:44:08: The process “/usr/bin/make” exited normally.

     

    I hope y’all can help me solve this problem 😀

     

    Thanks in advance,

    JT

     

    • This topic was modified 10 years, 4 months ago by  BTB1337.
    • This topic was modified 10 years, 4 months ago by  BTB1337.

    Re: Android App crashing on


    Pi

    Hi David,

    Yes it is test/development build. Here is the logcat output when I run the app (samsung tab2), I can’t spot the problem here

    11-09 19:57:38.050: W/ActivityThread(18750): Application net.vplay.builds.MultiSceneMultiLevel can be debugged on port 8100…
    11-09 19:57:38.066: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtCore.so 0x41cd5890
    11-09 19:57:38.074: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtCore.so 0x41cd5890
    11-09 19:57:38.074: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtCore.so 0x41cd5890, skipping init
    11-09 19:57:38.074: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtScript.so 0x41cd5890
    11-09 19:57:38.082: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtScript.so 0x41cd5890
    11-09 19:57:38.082: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtScript.so 0x41cd5890, skipping init
    11-09 19:57:38.082: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtNetwork.so 0x41cd5890
    11-09 19:57:38.089: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtNetwork.so 0x41cd5890
    11-09 19:57:38.089: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtNetwork.so 0x41cd5890, skipping init
    11-09 19:57:38.089: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtSql.so 0x41cd5890
    11-09 19:57:38.097: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtSql.so 0x41cd5890
    11-09 19:57:38.097: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtSql.so 0x41cd5890, skipping init
    11-09 19:57:38.097: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXml.so 0x41cd5890
    11-09 19:57:38.097: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXml.so 0x41cd5890
    11-09 19:57:38.097: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXml.so 0x41cd5890, skipping init
    11-09 19:57:38.097: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXmlPatterns.so 0x41cd5890
    11-09 19:57:38.113: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXmlPatterns.so 0x41cd5890
    11-09 19:57:38.113: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXmlPatterns.so 0x41cd5890, skipping init
    11-09 19:57:38.113: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtGui.so 0x41cd5890
    11-09 19:57:38.136: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtGui.so 0x41cd5890
    11-09 19:57:38.136: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtGui.so 0x41cd5890, skipping init
    11-09 19:57:38.136: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtDeclarative.so 0x41cd5890
    11-09 19:57:38.175: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtDeclarative.so 0x41cd5890
    11-09 19:57:38.175: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtDeclarative.so 0x41cd5890, skipping init
    11-09 19:57:38.175: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtOpenGL.so 0x41cd5890
    11-09 19:57:38.183: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtOpenGL.so 0x41cd5890
    11-09 19:57:38.183: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtOpenGL.so 0x41cd5890, skipping init
    11-09 19:57:38.183: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so 0x41cd5890
    11-09 19:57:38.183: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so 0x41cd5890
    11-09 19:57:38.183: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so 0x41cd5890, skipping init
    11-09 19:57:38.183: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libandroid-9.so 0x41cd5890
    11-09 19:57:38.191: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libandroid-9.so 0x41cd5890
    11-09 19:57:38.191: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libVPlay.so 0x41cd5890
    11-09 19:57:38.222: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libVPlay.so 0x41cd5890
    11-09 19:57:38.222: D/dalvikvm(18750): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libgame.so 0x41cd5890
    11-09 19:57:38.222: D/dalvikvm(18750): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libgame.so 0x41cd5890
    11-09 19:57:38.222: D/dalvikvm(18750): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libgame.so 0x41cd5890, skipping init
    11-09 19:57:38.246: W/apk path(18750): /data/app/net.vplay.builds.MultiSceneMultiLevel-1.apk
    11-09 19:57:38.472: E/libEGL(18750): error opening cache file /data/data/net.vplay.builds.MultiSceneMultiLevel/cache/com.android.opengl.shaders_cache: Permission denied (13)
    11-09 19:57:40.128: I/DEBUG(105): pid: 18750, tid: 18766, name: Thread-1021 >>> net.vplay.builds.MultiSceneMultiLevel <<<
    11-09 19:57:40.285: I/DEBUG(105): #03 pc 000a6fd9 /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so (cocos2d::CCTextureAtlas::initWithTexture(cocos2d::CCTexture2D*, unsigned int)+28)
    11-09 19:57:40.285: I/DEBUG(105): 5eea0258 5e9b1d50 /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 19:57:40.285: I/DEBUG(105): #00 5eea0298 5e988add /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 19:57:40.285: I/DEBUG(105): 5eea02b4 5e988add /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 19:57:40.285: I/DEBUG(105): 5eea02cc 5e98db68 /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 19:57:40.285: I/DEBUG(105): 5eea02d0 5e98db68 /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 19:57:40.285: I/DEBUG(105): 5eea02d4 5e900fdd /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so (cocos2d::CCTextureAtlas::initWithTexture(cocos2d::CCTexture2D*, unsigned int)+32)
    11-09 19:57:47.503: I/ActivityManager(354): Process net.vplay.builds.MultiSceneMultiLevel (pid 18750) has died.
    11-09 20:04:01.769: W/ActivityThread(19080): Application net.vplay.builds.MultiSceneMultiLevel can be debugged on port 8100…
    11-09 20:04:01.785: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtCore.so 0x41cd66d8
    11-09 20:04:01.785: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtCore.so 0x41cd66d8
    11-09 20:04:01.785: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtCore.so 0x41cd66d8, skipping init
    11-09 20:04:01.785: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtScript.so 0x41cd66d8
    11-09 20:04:01.793: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtScript.so 0x41cd66d8
    11-09 20:04:01.793: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtScript.so 0x41cd66d8, skipping init
    11-09 20:04:01.793: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtNetwork.so 0x41cd66d8
    11-09 20:04:01.800: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtNetwork.so 0x41cd66d8
    11-09 20:04:01.800: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtNetwork.so 0x41cd66d8, skipping init
    11-09 20:04:01.800: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtSql.so 0x41cd66d8
    11-09 20:04:01.808: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtSql.so 0x41cd66d8
    11-09 20:04:01.808: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtSql.so 0x41cd66d8, skipping init
    11-09 20:04:01.808: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXml.so 0x41cd66d8
    11-09 20:04:01.808: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXml.so 0x41cd66d8
    11-09 20:04:01.808: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXml.so 0x41cd66d8, skipping init
    11-09 20:04:01.808: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXmlPatterns.so 0x41cd66d8
    11-09 20:04:01.824: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXmlPatterns.so 0x41cd66d8
    11-09 20:04:01.824: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtXmlPatterns.so 0x41cd66d8, skipping init
    11-09 20:04:01.824: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtGui.so 0x41cd66d8
    11-09 20:04:01.839: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtGui.so 0x41cd66d8
    11-09 20:04:01.839: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtGui.so 0x41cd66d8, skipping init
    11-09 20:04:01.839: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtDeclarative.so 0x41cd66d8
    11-09 20:04:01.878: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtDeclarative.so 0x41cd66d8
    11-09 20:04:01.878: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtDeclarative.so 0x41cd66d8, skipping init
    11-09 20:04:01.878: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtOpenGL.so 0x41cd66d8
    11-09 20:04:01.886: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtOpenGL.so 0x41cd66d8
    11-09 20:04:01.886: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libQtOpenGL.so 0x41cd66d8, skipping init
    11-09 20:04:01.886: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so 0x41cd66d8
    11-09 20:04:01.894: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so 0x41cd66d8
    11-09 20:04:01.894: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so 0x41cd66d8, skipping init
    11-09 20:04:01.894: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libandroid-9.so 0x41cd66d8
    11-09 20:04:01.902: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libandroid-9.so 0x41cd66d8
    11-09 20:04:01.902: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libVPlay.so 0x41cd66d8
    11-09 20:04:01.925: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libVPlay.so 0x41cd66d8
    11-09 20:04:01.925: D/dalvikvm(19080): Trying to load lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libgame.so 0x41cd66d8
    11-09 20:04:01.925: D/dalvikvm(19080): Added shared lib /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libgame.so 0x41cd66d8
    11-09 20:04:01.925: D/dalvikvm(19080): No JNI_OnLoad found in /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libgame.so 0x41cd66d8, skipping init
    11-09 20:04:01.941: W/apk path(19080): /data/app/net.vplay.builds.MultiSceneMultiLevel-1.apk
    11-09 20:04:03.800: I/DEBUG(105): pid: 19080, tid: 19096, name: Thread-1057 >>> net.vplay.builds.MultiSceneMultiLevel <<<
    11-09 20:04:03.964: I/DEBUG(105): #03 pc 000a6fd9 /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so (cocos2d::CCTextureAtlas::initWithTexture(cocos2d::CCTexture2D*, unsigned int)+28)
    11-09 20:04:03.964: I/DEBUG(105): 5eea0258 5e9b1d50 /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 20:04:03.964: I/DEBUG(105): #00 5eea0298 5e988add /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 20:04:03.964: I/DEBUG(105): 5eea02b4 5e988add /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 20:04:03.964: I/DEBUG(105): 5eea02cc 5e98db68 /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 20:04:03.964: I/DEBUG(105): 5eea02d0 5e98db68 /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so
    11-09 20:04:03.964: I/DEBUG(105): 5eea02d4 5e900fdd /data/data/net.vplay.builds.MultiSceneMultiLevel/lib/libCocos2dx.so (cocos2d::CCTextureAtlas::initWithTexture(cocos2d::CCTexture2D*, unsigned int)+32)
    11-09 20:04:11.214: I/ActivityManager(354): Process net.vplay.builds.MultiSceneMultiLevel (pid 19080) has died.


    Martin

    I now modified the v-play.prf like so (additionally checking for linux-g++-64)

    # Project file including Felgo libraries and paths for specific build target
    
    # needed for reading the Mac address with QNetworkInterface, required for Felgo Game Network
    QT += network
    
    # Set gcc 4.6 on Linux machines
    linux-g++|linux-g++-64 {
      QMAKE_CC = gcc-4.6
      QMAKE_LINK_C       = $$QMAKE_CC
      QMAKE_LINK_C_SHLIB = $$QMAKE_CC
      QMAKE_CXX = g++-4.6
      QMAKE_LINK       = $$QMAKE_CXX
      QMAKE_LINK_SHLIB = $$QMAKE_CXX
    }
    
    # Set SDK and base path
    macx|win32|linux-g++|linux-g++-64: {
      # Paths for Windows Mac OS X, and Linux
      VPLAY_BASE_PATH = $$[QT_INSTALL_PREFIX]/../../../FelgoSDK
      VPLAY_SDK_PATH = $$VPLAY_BASE_PATH
    } else: contains(MEEGO_EDITION,harmattan) {
      # Paths for MeeGo
      VPLAY_BASE_PATH = $$[QT_INSTALL_PREFIX]/../../../SDKs/FelgoSDK
      VPLAY_SDK_PATH = $$[QT_INSTALL_PREFIX]/../../../../Desktop/FelgoSDK
    } else: symbian: {
      # Paths for Symbian
      VPLAY_BASE_PATH = $$[QT_INSTALL_PREFIX]../FelgoSDK
      VPLAY_SDK_PATH = $$[QT_INSTALL_PREFIX]../../../Desktop/FelgoSDK
    }
    
    # Resolve paths
    VPLAY_INCLUDE_PATH = $$VPLAY_SDK_PATH/include
    VPLAY_LIBRARY_PATH = $$VPLAY_BASE_PATH/lib
    VPLAY_QML_PATH = $$VPLAY_SDK_PATH/qml
    
    # Check if the environment variable VPLAY_TEST_LOCALLY is set to 1
    TEST_LOCALLY = $$(VPLAY_TEST_LOCALLY)
    contains(TEST_LOCALLY, 1): {
        CONFIG += testLocally
        message(VPLAY_TEST_LOCALLY environment variable is set to 1)
    }
    
    # Only used for Felgo internal debugging
    testLocally {
      message(testLocally config variable is set...)
      # $$_PRO_FILE_PWD_ must resolve to two subdirs underneath the main pro file, e.g. the demos/_demo_ folders
      # If the local feature file (v-play.prf) should be tested be sure to set QMAKEFEATURES env variable too (see README for this)
      VPLAY_BASE_PATH = $$_PRO_FILE_PWD_/../..
      VPLAY_SDK_PATH = $$VPLAY_BASE_PATH
      VPLAY_INCLUDE_PATH = $$VPLAY_SDK_PATH/src
      VPLAY_QML_PATH = $$VPLAY_SDK_PATH/qml
    
      linux-g++|linux-g++-64: VPLAY_LIBRARY_PATH = $$VPLAY_SDK_PATH/lib/linux
      symbian: VPLAY_LIBRARY_PATH = $$VPLAY_SDK_PATH/lib/symbian
      contains(MEEGO_EDITION,harmattan): VPLAY_LIBRARY_PATH = $$VPLAY_SDK_PATH/lib/meego
      win32: VPLAY_LIBRARY_PATH = $$VPLAY_SDK_PATH/lib/windows
      macx: VPLAY_LIBRARY_PATH = $$VPLAY_SDK_PATH/lib/macx
    }
    
    # Set paths
    INCLUDEPATH += $$VPLAY_INCLUDE_PATH
    DEPENDPATH += $$VPLAY_INCLUDE_PATH
    QML_IMPORT_PATH += $$VPLAY_QML_PATH
    
    # Add platform specific libraries
    macx {
      DEFINES += PLATFORM_MAC
      # Frameworks
      LIBS += -framework Cocoa
      LIBS += -framework OpenGL
      LIBS += -framework OpenAL
      LIBS += -framework AudioToolbox
    
      # Third party libraries
      LIBS += -L$$VPLAY_LIBRARY_PATH/third_party -lcurl -lfreetype -ljpeg -lpng14 -lxml2 -lz
    
      # Felgo libraries
      CONFIG(release, debug|release): LIBS += -L$$VPLAY_LIBRARY_PATH -lVPlay
      else:CONFIG(debug, debug|release): LIBS += -L$$VPLAY_LIBRARY_PATH -lVPlay_debug
    
    } else: win32 {
      DEFINES += PLATFORM_WINDOWS
      # Third party libraries
      LIBS += -L$$VPLAY_LIBRARY_PATH/third_party -llibcurl_imp -llibEGL -llibgles_cm -llibiconv -llibjpeg -llibpng -llibxml2 -llibzlib -lpthreadVCE2
      LIBS += -lWinMM -lAdvAPI32 -lGdi32 -lshell32 -lUser32
      LIBS += -lkernel32 -lwinspool -lcomdlg32 -lole32 -loleaut32 -luuid -lodbc32 -lodbccp32
    
      # Felgo libraries
      CONFIG(release, debug|release): LIBS += -L$$VPLAY_LIBRARY_PATH -lVPlay
      else:CONFIG(debug, debug|release): LIBS += -L$$VPLAY_LIBRARY_PATH -lVPlayd
    
    } else: symbian {
      DEFINES += PLATFORM_SYMBIAN
      # Felgo libraries
      CONFIG(release, debug|release): LIBS += -lVPlay
      CONFIG(debug, debug|release): LIBS += -lVPlay_debug
      # the below doesnt work, the library cat be found with the tools/checklib.exe
      #CONFIG(release, debug|release): LIBS += $$VPLAY_LIBRARY_PATH/VPlay.lib
      #else:CONFIG(debug, debug|release): LIBS += $$VPLAY_LIBRARY_PATH/VPlay_debug.lib
    
      # Third party libraries
      LIBS += -lusrt2_2.lib # (QTCREATORBUG-5589)
      # LIBS += -lcharconv
    
      # Symbian specific permissions
      TARGET.CAPABILITY += NetworkServices ReadUserData WriteUserData
    
      MMP_RULES += EXPORTUNFROZEN
      MMP_RULES += "OPTION gcce -march=armv6"
      MMP_RULES += "OPTION gcce -mfpu=vfp"
      MMP_RULES += "OPTION gcce -mfloat-abi=softfp"
      MMP_RULES += "OPTION gcce -marm"
      MMP_RULES += "OPTION gcce -fno-use-cxa-atexit"
    
      LIBS += -llibEGL -llibgles_cm
      LIBS += -lcone -leikcore -lavkon
      LIBS += -lremconcoreapi -lremconinterfacebase -lmmfdevsound
    
      QT += xml
      CONFIG += mobility
      MOBILITY += multimedia systeminfo sensors
    
    } else: contains(MEEGO_EDITION,harmattan) {
      DEFINES += PLATFORM_MEEGO
      # Felgo libraries
      CONFIG(release, debug|release): LIBS += $$VPLAY_LIBRARY_PATH/libVPlay.a
      else:CONFIG(debug, debug|release): LIBS += $$VPLAY_LIBRARY_PATH/libVPlay_debug.a
    
      QT += meegographicssystemhelper
      LIBS += -lpthread -lxml2 -lEGL -lGLES_CM
    
      QT += xml
      CONFIG += mobility
      MOBILITY += multimedia systeminfo sensors
    
    } else: linux-g++|linux-g++-64 {
      DEFINES += PLATFORM_LINUX
      # Felgo libraries
    
      linux-g++:contains(QMAKE_HOST.arch, x86_64)|linux-g++-64: {
          VPLAY_LIBRARY_PATH = $$VPLAY_LIBRARY_PATH/lib64
          LIBS += -lpng12 -lz -lfontconfig
      }
    
      CONFIG(release, debug|release): LIBS += $$VPLAY_LIBRARY_PATH/libVPlay.a
      else:CONFIG(debug, debug|release): LIBS += $$VPLAY_LIBRARY_PATH/libVPlay_debug.a
    
      # Third party libraries
      THIRDPARTY_LIBRARY_PATH = $$VPLAY_LIBRARY_PATH/third_party
    
      message(Felgo 3rdparty library path: $$THIRDPARTY_LIBRARY_PATH)
    
      LIBS += -L$$THIRDPARTY_LIBRARY_PATH
      LIBS += -lglfw -lGL
      LIBS += -lcurl -lfreetype -ljpeg -lxml2
    
      linux-g++:contains(QMAKE_HOST.arch, x86_64)|linux-g++-64: {
        LIBS += -lfmodex64
      } else: {
        LIBS += -lfmodex
      }
    }
    
    # QML Plugin paths
    VPlayPluginsGenericFolder.target = plugins
    VPlayPluginsGenericFolder.source = $$VPLAY_SDK_PATH/plugins/generic
    DEPLOYMENTFOLDERS += VPlayPluginsGenericFolder
    
    contains(DEFINES, PLATFORM_WINDOWS): platformPluginPath = plugins/windows
    else: contains(DEFINES, PLATFORM_MAC): platformPluginPath = plugins/macx
    else: contains(DEFINES, PLATFORM_LINUX): platformPluginPath = plugins/linux
    else: contains(DEFINES, PLATFORM_IOS): platformPluginPath = plugins/ios
    else: contains(DEFINES, PLATFORM_ANDROID): platformPluginPath = plugins/android
    else: contains(DEFINES, PLATFORM_SYMBIAN): platformPluginPath = plugins/symbian
    else: contains(DEFINES, PLATFORM_MEEGO): platformPluginPath = plugins/meego
    
    VPlayPluginsPlatformFolder.target = plugins
    VPlayPluginsPlatformFolder.source = $$VPLAY_SDK_PATH/$$platformPluginPath
    DEPLOYMENTFOLDERS += VPlayPluginsPlatformFolder
    
    QML_IMPORT_PATH += $$VPlayPluginsPlatformFolder.source
    QML_IMPORT_PATH += $$VPlayPluginsGenericFolder.source
    
    # Mac deployment targets
    macx {
      APPCERT = "3rd Party Mac Developer Application: $${COMPANY}"
      INSTALLERCERT = "3rd Party Mac Developer Installer: $${COMPANY}"
    
      QMAKE_CFLAGS_RELEASE = $$QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO
      QMAKE_CXXFLAGS_RELEASE = $$QMAKE_CXXFLAGS_RELEASE_WITH_DEBUGINFO
      QMAKE_OBJECTIVE_CFLAGS_RELEASE =  $$QMAKE_OBJECTIVE_CFLAGS_RELEASE_WITH_DEBUGINFO
      QMAKE_LFLAGS_RELEASE = $$QMAKE_LFLAGS_RELEASE_WITH_DEBUGINFO
    
      # Adapt paths for shadow builds
      QMAKE_INFO_PLIST = $$_PRO_FILE_PWD_/$${QMAKE_INFO_PLIST}
      ENTITLEMENTS = $$_PRO_FILE_PWD_/$${ENTITLEMENTS}
    
      OTHER_FILES +=  $${QMAKE_INFO_PLIST} \
                      $${ENTITLEMENTS}
    
      # package target, creates standalone .app package
      package.depends += all first copydeploymentfolders
      package.commands += $$[QT_INSTALL_PREFIX]/bin/macdeployqt $${TARGET}.app;
      # Remove unneeded frameworks and plug-ins
      # package.commands += rm -r $${TARGET}.app/Contents/Frameworks/QtDeclarative.framework;
      package.commands += rm -r $${TARGET}.app/Contents/PlugIns/accessible;
      package.commands += rm -r $${TARGET}.app/Contents/PlugIns/bearer;
      package.commands += find $${TARGET}.app -name '*.DS_Store' -type f -delete;
      package.commands += chmod -R a+xr $${TARGET}.app
    
      # codesign target, creates dSym file and signs package from package step
      codesign.depends += package
      codesign.commands += dsymutil $${TARGET}.app/Contents/MacOS/$${TARGET} -o $${TARGET}.app.dSYM;
      # Sign frameworks and plug-ins (should be done in future?)
      # codesign -s "$APPCERT" -i $BUNDLEID $${TARGET}.app/Contents/Frameworks/QtCore.framework/Versions/4/QtCore
      # codesign -s "$APPCERT" -i $BUNDLEID $${TARGET}.app/Contents/PlugIns/imageformats/libqjpeg.dylib
      # Sign the application bundle, using the provided entitlements
      codesign.commands += codesign -s \"$${APPCERT}\" -fv --entitlements $${ENTITLEMENTS} $${TARGET}.app;
    
      # mas target, create an installer file for mac app store, combining the other targets
      mas.depends += package codesign
      mas.commands += productbuild --component $${TARGET}.app /Applications --sign \"$${INSTALLERCERT}\" $${TARGET}.pkg;
    
      QMAKE_EXTRA_TARGETS += package codesign mas copyfiles
    }
    
    # Print paths for debug purposes and support requests
    message(QT install prefix: $$QT_INSTALL_PREFIX)
    message(Felgo SDK path: $$VPLAY_SDK_PATH)
    message(Felgo target path: $$VPLAY_BASE_PATH)
    message(Felgo library path: $$VPLAY_LIBRARY_PATH)
    message(Felgo qml path: $$VPLAY_QML_PATH)
    message(Felgo include path: $$VPLAY_INCLUDE_PATH)
    message(VPlayPluginsGenericPath: $$VPlayPluginsGenericFolder.source)
    message(VPlayPluginsPlatformPath: $$VPlayPluginsPlatformFolder.source)
    message(QML_IMPORT_PATH: $$QML_IMPORT_PATH)
    
    # Please do not modify the following two lines. Required for deployment.
    include($$VPLAY_SDK_PATH/qmlapplicationviewer/vplayqmlapplicationviewer.pri)
    qtcAddDeployment()
    

    which brings up the known linker error

    g++-4.6 -m64 -Wl,-rpath,/home/eigel/libs/FelgoSDK/Desktop/Qt/4.8.1/gcc/lib -o MultiDragAndPinch main.o qmlapplicationviewer.o moc_qmlapplicationviewer.o    -L/home/eigel/libs/FelgoSDK/Desktop/Qt/4.8.1/gcc/lib -lpng12 -lz -lfontconfig /home/eigel/libs/FelgoSDK/Desktop/Qt/4.8.1/gcc/../../../FelgoSDK/lib/lib64/libVPlay_debug.a -L/home/eigel/libs/FelgoSDK/Desktop/Qt/4.8.1/gcc/../../../FelgoSDK/lib/lib64/third_party -lglfw -lGL -lcurl -lfreetype -ljpeg -lxml2 -lfmodex64 -lQtDeclarative -L/home/eigel/libs/FelgoSDK/Desktop/Qt/4.8.1/gcc/lib -lQtScript -lQtSvg -L/usr/X11R6/lib64 -lQtSql -lQtXmlPatterns -lQtGui -lQtNetwork -lQtCore -lpthread 
    /usr/bin/ld: /home/eigel/libs/FelgoSDK/Desktop/Qt/4.8.1/gcc/../../../FelgoSDK/lib/lib64/libVPlay_debug.a(CCImage.o): undefined reference to symbol 'png_malloc@@PNG12_0'
    /usr/bin/ld: note: 'png_malloc@@PNG12_0' is defined in DSO /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/libpng12.so so try adding it to the linker command line
    /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/libpng12.so: could not read symbols: Invalid operation
    collect2: ld returned 1 exit status

    I also have a fresh ubuntu 13.04 64 installation so we should have identical library files. Not sure how to compare though.

    eigel@hilbert:~$ ls -la /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/libpng12.so
    lrwxrwxrwx 1 root root 35 Nov 12  2012 /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/libpng12.so -> /lib/x86_64-linux-gnu/libpng12.so.0
    eigel@hilbert:~$ ls -la /lib/x86_64-linux-gnu/libpng12.so.0
    lrwxrwxrwx 1 root root 18 Nov 12  2012 /lib/x86_64-linux-gnu/libpng12.so.0 -> libpng12.so.0.49.0
    eigel@hilbert:~$ ls -la /lib/x86_64-linux-gnu/libpng12.so.0.49.0 
    -rw-r--r-- 1 root root 153944 Nov 12  2012 /lib/x86_64-linux-gnu/libpng12.so.0.49.0
    eigel@hilbert:~$ ldd /lib/x86_64-linux-gnu/libpng12.so.0.49.0 
    	linux-vdso.so.1 =>  (0x00007ffffc5ca000)
    	libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007f7ce5495000)
    	libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f7ce5190000)
    	libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f7ce4dc7000)
    	/lib64/ld-linux-x86-64.so.2 (0x00007f7ce58f3000)
    eigel@hilbert:~$ nm -D /lib/x86_64-linux-gnu/libpng12.so.0.49.0 
                     U abort
                     U crc32
                     w __cxa_finalize
                     U deflate
                     U deflateEnd
                     U deflateInit2_
                     U deflateReset
                     U fflush
                     U __fprintf_chk
                     U fputc
                     U fread
                     U free
                     U fwrite
                     w __gmon_start__
                     U gmtime
                     U inflate
                     U inflateEnd
                     U inflateInit_
                     U inflateReset
                     w _ITM_deregisterTMCloneTable
                     w _ITM_registerTMCloneTable
                     w _Jv_RegisterClasses
                     U __longjmp_chk
                     U malloc
                     U memcmp
                     U memcpy
                     U __memcpy_chk
                     U memset
    0000000000000000 A PNG12_0
    0000000000004a70 T png_access_version_number
    0000000000016ef0 T png_build_grayscale_palette
    0000000000003f00 T png_check_sig
    000000000001beb0 T png_chunk_error
    000000000001bf10 T png_chunk_warning
    00000000000132a0 T png_convert_from_struct_tm
    00000000000132d0 T png_convert_from_time_t
    0000000000004850 T png_convert_to_rfc1123
    0000000000004120 T png_create_info_struct
    00000000000106e0 T png_create_read_struct
    00000000000102e0 T png_create_read_struct_2
    0000000000014850 T png_create_write_struct
    0000000000014560 T png_create_write_struct_2
    0000000000004180 T png_data_freer
    00000000000047b0 T png_destroy_info_struct
    00000000000123c0 T png_destroy_read_struct
    0000000000013a80 T png_destroy_write_struct
    000000000001bb50 T png_error
    000000000001b960 T png_free
    00000000000041c0 T png_free_data
    000000000001b940 T png_free_default
    00000000000075d0 T png_get_asm_flagmask
    00000000000075c0 T png_get_asm_flags
    0000000000006ac0 T png_get_bit_depth
    0000000000006d80 T png_get_bKGD
    0000000000006d40 T png_get_channels
    0000000000006db0 T png_get_cHRM
    0000000000006ec0 T png_get_cHRM_fixed
    0000000000006ae0 T png_get_color_type
    00000000000075a0 T png_get_compression_buffer_size
    0000000000006b40 T png_get_compression_type
    0000000000004990 T png_get_copyright
    000000000001bf90 T png_get_error_ptr
    0000000000006b00 T png_get_filter_type
    0000000000006fa0 T png_get_gAMA
    0000000000006fe0 T png_get_gAMA_fixed
    00000000000049b0 T png_get_header_ver
    00000000000049c0 T png_get_header_version
    00000000000070e0 T png_get_hIST
    0000000000007050 T png_get_iCCP
    0000000000007120 T png_get_IHDR
    0000000000006aa0 T png_get_image_height
    0000000000006a80 T png_get_image_width
    0000000000007870 T png_get_int_32
    0000000000006b20 T png_get_interlace_type
    0000000000004820 T png_get_io_ptr
    00000000000049a0 T png_get_libpng_ver
    000000000001ba40 T png_get_mem_ptr
    00000000000075f0 T png_get_mmx_bitdepth_threshold
    00000000000075e0 T png_get_mmx_flagmask
    0000000000007600 T png_get_mmx_rowbytes_threshold
    00000000000071f0 T png_get_oFFs
    0000000000007250 T png_get_pCAL
    0000000000007360 T png_get_pHYs
    0000000000006c00 T png_get_pixel_aspect_ratio
    0000000000006bc0 T png_get_pixels_per_meter
    00000000000073c0 T png_get_PLTE
    000000000001d930 T png_get_progressive_ptr
    0000000000007560 T png_get_rgb_to_gray_status
    0000000000006a40 T png_get_rowbytes
    0000000000006a60 T png_get_rows
    0000000000007400 T png_get_sBIT
    0000000000007310 T png_get_sCAL
    0000000000006d60 T png_get_signature
    00000000000070b0 T png_get_sPLT
    0000000000007020 T png_get_sRGB
    0000000000007430 T png_get_text
    0000000000007480 T png_get_tIME
    00000000000074b0 T png_get_tRNS
    00000000000078a0 T png_get_uint_16
    0000000000007800 T png_get_uint_31
    0000000000007840 T png_get_uint_32
    0000000000007530 T png_get_unknown_chunks
    0000000000007580 T png_get_user_chunk_ptr
    0000000000007630 T png_get_user_height_max
    000000000000c330 T png_get_user_transform_ptr
    0000000000007610 T png_get_user_width_max
    0000000000006a20 T png_get_valid
    0000000000006c80 T png_get_x_offset_microns
    0000000000006ce0 T png_get_x_offset_pixels
    0000000000006b60 T png_get_x_pixels_per_meter
    0000000000006cb0 T png_get_y_offset_microns
    0000000000006d10 T png_get_y_offset_pixels
    0000000000006b90 T png_get_y_pixels_per_meter
    00000000000049d0 T png_handle_as_unknown
    0000000000004100 T png_info_init
    0000000000004010 T png_info_init_3
    0000000000004840 T png_init_io
    000000000001df10 R png_libpng_ver
    000000000001b890 T png_malloc
    000000000001b870 T png_malloc_default
    000000000001b9a0 T png_malloc_warn
    000000000001ba00 T png_memcpy_check
    000000000001ba10 T png_memset_check
    0000000000004a80 T png_mmx_support
    000000000001de40 R png_pass_dsp_mask
    000000000001dec0 R png_pass_inc
    000000000001de60 R png_pass_mask
    000000000001dee0 R png_pass_start
    000000000001de80 R png_pass_yinc
    000000000001dea0 R png_pass_ystart
    00000000000066f0 T png_permit_empty_plte
    0000000000006720 T png_permit_mng_features
    000000000001d860 T png_process_data
    000000000001d8c0 T png_progressive_combine_row
    0000000000011f90 T png_read_destroy
    0000000000011a30 T png_read_end
    00000000000119b0 T png_read_image
    0000000000010c10 T png_read_info
    0000000000012510 T png_read_png
    00000000000112d0 T png_read_row
    00000000000118f0 T png_read_rows
    0000000000011240 T png_read_update_info
    0000000000004a50 T png_reset_zstream
    000000000000c710 T png_save_int_32
    000000000000c740 T png_save_uint_16
    000000000000c6e0 T png_save_uint_32
    000000000000bd90 T png_set_add_alpha
    00000000000069d0 T png_set_asm_flags
    0000000000014ca0 T png_set_background
    000000000000bc50 T png_set_bgr
    00000000000051d0 T png_set_bKGD
    0000000000005200 T png_set_cHRM
    0000000000005370 T png_set_cHRM_fixed
    0000000000006940 T png_set_compression_buffer_size
    0000000000014870 T png_set_compression_level
    0000000000014890 T png_set_compression_mem_level
    0000000000014960 T png_set_compression_method
    00000000000148b0 T png_set_compression_strategy
    00000000000148d0 T png_set_compression_window_bits
    0000000000014b80 T png_set_crc_action
    0000000000014d50 T png_set_dither
    000000000001bf70 T png_set_error_fn
    00000000000156a0 T png_set_expand
    00000000000156e0 T png_set_expand_gray_1_2_4_to_8
    000000000000bd20 T png_set_filler
    0000000000013b90 T png_set_filter
    0000000000013e10 T png_set_filter_heuristics
    00000000000136d0 T png_set_flush
    0000000000005530 T png_set_gAMA
    00000000000055d0 T png_set_gAMA_fixed
    0000000000015620 T png_set_gamma
    0000000000015700 T png_set_gray_1_2_4_to_8
    0000000000015740 T png_set_gray_to_rgb
    00000000000056c0 T png_set_hIST
    0000000000005d70 T png_set_iCCP
    0000000000005770 T png_set_IHDR
    000000000000bcf0 T png_set_interlace_handling
    00000000000069b0 T png_set_invalid
    000000000000bdd0 T png_set_invert_alpha
    000000000000bdf0 T png_set_invert_mono
    0000000000006740 T png_set_keep_unknown_chunks
    000000000001ba20 T png_set_mem_fn
    00000000000069f0 T png_set_mmx_thresholds
    0000000000005890 T png_set_oFFs
    000000000000bc80 T png_set_packing
    000000000000bca0 T png_set_packswap
    00000000000156c0 T png_set_palette_to_rgb
    00000000000058c0 T png_set_pCAL
    0000000000005b00 T png_set_pHYs
    0000000000005b30 T png_set_PLTE
    000000000001d8f0 T png_set_progressive_read_fn
    0000000000012870 T png_set_read_fn
    0000000000012500 T png_set_read_status_fn
    00000000000068c0 T png_set_read_user_chunk_fn
    0000000000015990 T png_set_read_user_transform_fn
    00000000000158c0 T png_set_rgb_to_gray
    0000000000015760 T png_set_rgb_to_gray_fixed
    00000000000068e0 T png_set_rows
    0000000000005c20 T png_set_sBIT
    0000000000005ad0 T png_set_sCAL
    000000000000bcc0 T png_set_shift
    0000000000003e00 T png_set_sig_bytes
    00000000000062e0 T png_set_sPLT
    0000000000005c50 T png_set_sRGB
    0000000000005c70 T png_set_sRGB_gAMA_and_cHRM
    0000000000014d10 T png_set_strip_16
    0000000000014d30 T png_set_strip_alpha
    000000000001bfb0 T png_set_strip_error_numbers
    000000000000bc60 T png_set_swap
    000000000000bdb0 T png_set_swap_alpha
    0000000000006120 T png_set_text
    0000000000006140 T png_set_tIME
    0000000000006170 T png_set_tRNS
    0000000000015720 T png_set_tRNS_to_alpha
    00000000000066c0 T png_set_unknown_chunk_location
    00000000000064e0 T png_set_unknown_chunks
    0000000000006a00 T png_set_user_limits
    000000000000c310 T png_set_user_transform_info
    00000000000129a0 T png_set_write_fn
    00000000000149b0 T png_set_write_status_fn
    00000000000149c0 T png_set_write_user_transform_fn
    0000000000003e50 T png_sig_cmp
    00000000000112b0 T png_start_read_image
    000000000001bd60 T png_warning
    000000000000ca10 T png_write_chunk
    000000000000c870 T png_write_chunk_data
    000000000000c9b0 T png_write_chunk_end
    000000000000c7e0 T png_write_chunk_start
    0000000000013800 T png_write_destroy
    00000000000130c0 T png_write_end
    00000000000136f0 T png_write_flush
    0000000000013610 T png_write_image
    0000000000012cb0 T png_write_info
    0000000000012a30 T png_write_info_before_PLTE
    00000000000149e0 T png_write_png
    0000000000013300 T png_write_row
    0000000000013680 T png_write_rows
                     U pow
                     U _setjmp
                     U __snprintf_chk
                     U __stack_chk_fail
                     U stderr
                     U strlen
                     U strtod
    eigel@hilbert:~$ nm -g /lib/x86_64-linux-gnu/libpng12.so.0.49.0 
    nm: /lib/x86_64-linux-gnu/libpng12.so.0.49.0: no symbols
    

    Not sure if the last line points to a problem? Do you have any suggestions?

    Best, Martin


    Martin

    Hey,

    we are quite excited about the addition of the level editor component and are currently trying to adapt it for our game. I would just like to point out that there seems to be an issue with the item editor when running StackTheBoxWithEditor, see output below (Ubuntu 12.04 32).

    Cheers, Martin

     

    EntityBase: onDestruction(), emit entityDestroyed signal for entityId box_14
    EntityBase: entityDestroyed received, setting visible to false
    destroy item in AbstractCCNodeManager: QObject(0xa59adc8) , nodeMgr: CCSpriteManager(0x9b16f08)
    destroy item in AbstractCCNodeManager: EntityBase_QMLTYPE_66(0xa8aa698, name = "box_14") , nodeMgr: CCNodeManager(0x9b16b88)
    [ItemEditor] ERROR: Remove binding was not successfull!
    [ItemEditor] ERROR: Remove binding was not successfull!
    [ItemEditor] ERROR: Remove binding was not successfull!
    EntityBase: onDestruction(), emit entityDestroyed signal for entityId box_15
    EntityBase: entityDestroyed received, setting visible to false
    destroy item in AbstractCCNodeManager: QObject(0xa9cac38) , nodeMgr: CCSpriteManager(0x9b16f08)
    destroy item in AbstractCCNodeManager: EntityBase_QMLTYPE_66(0xa9bf8e8, name = "box_15") , nodeMgr: CCNodeManager(0x9b16b88)
    [ItemEditor] ERROR: Remove binding was not successfull!
    [ItemEditor] ERROR: Remove binding was not successfull!
    [ItemEditor] ERROR: Remove binding was not successfull!
    EntityBase: onDestruction(), emit entityDestroyed signal for entityId box_16
    EntityBase: entityDestroyed received, setting visible to false
    destroy item in AbstractCCNodeManager: QObject(0xa971cd0) , nodeMgr: CCSpriteManager(0x9b16f08)
    destroy item in AbstractCCNodeManager: EntityBase_QMLTYPE_66(0xaa155b8, name = "box_16") , nodeMgr: CCNodeManager(0x9b16b88)
    [ItemEditor] ERROR: Remove binding was not successfull!

     

    Re: BuildEntityButton – create entity on


    phil.jahoda

    I just made the update but the error still occurs. It seems as if something in the class “EntitySelection” is not working properly as you can see in the last lines of the error message.

    Furthermore, could our error have something to do with the “storing property…” of the EntityBaseDraggable as you can see it in the Log output?

    Do you see any errors or missing/wrong properties in the code of our EntityBaseDraggable that is shown above?

    Here again the error message:

    BuildEntityButton: button MouseArea pressed, start dragging entity
    EntityBaseDraggable: storing property active with value false
    EntityBaseDraggable: storing property state with value 
    EntityBaseDraggable: storing property bodyType with value 2
    EntityBaseDraggable: storing property implicitHeight with value 0
    EntityBaseDraggable: storing property smooth with value false
    EntityBaseDraggable: storing property width with value 32
    EntityBaseDraggable: storing property visible with value false
    EntityBaseDraggable: storing property clip with value false
    EntityBaseDraggable: storing property bullet with value false
    EntityBaseDraggable: storing property density with value 0
    EntityBaseDraggable: storing property collidesWith with value 65535
    EntityBaseDraggable: storing property groupIndex with value 0
    EntityBaseDraggable: storing property focus with value false
    EntityBaseDraggable: storing property baselineOffset with value 0
    EntityBaseDraggable: storing property angularVelocity with value 0
    EntityBaseDraggable: storing property collisionTestingOnlyMode with value false
    EntityBaseDraggable: storing property fixedRotation with value false
    EntityBaseDraggable: storing property scale with value 1
    EntityBaseDraggable: storing property activeFocus with value false
    EntityBaseDraggable: storing property categories with value 1
    EntityBaseDraggable: storing property opacity with value 1
    EntityBaseDraggable: storing property rotation with value 0
    EntityBaseDraggable: storing property angularDamping with value 0
    EntityBaseDraggable: storing property restitution with value 0
    EntityBaseDraggable: storing property transformOrigin with value 4
    EntityBaseDraggable: storing property sleepingAllowed with value true
    EntityBaseDraggable: storing property objectName with value boxCollider
    EntityBaseDraggable: storing property torque with value 0
    EntityBaseDraggable: storing property friction with value 0.20000000298023224
    EntityBaseDraggable: storing property x with value 0
    EntityBaseDraggable: storing property enabled with value true
    EntityBaseDraggable: storing property y with value 0
    EntityBaseDraggable: storing property z with value 0
    EntityBaseDraggable: storing property sensor with value false
    EntityBaseDraggable: storing property height with value 32
    EntityBaseDraggable: storing property implicitWidth with value 0
    EntityBaseDraggable: storing property linearDamping with value 0
    Box2DBody: calling sychronize after active got set to true 
    BuildEntityButton: entity got pressed: EntityBaseDraggable_QMLTYPE_76(0x111181c60, "file:///Users/philipp/CrazyElephant-build-desktop-Desktop_Qt_4_8_1_for_GCC__Qt_SDK__Debug/CrazyElephant.app/Contents/Resources/qml/entities/DraggableEntity.qml_96") , for creationType: file:///Users/philipp/CrazyElephant-build-desktop-Desktop_Qt_4_8_1_for_GCC__Qt_SDK__Debug/CrazyElephant.app/Contents/Resources/qml/entities/DraggableEntity.qml
    pos of createdEntity: 79 6.5
    Cocos2DWrapper: updateItemPositionAndRotationImmediately: parentPosOfTopLeft: QPointF(79, 6.5) EntityBaseDraggable_QMLTYPE_76 (this = 0x111181c60 , parent = 0x1042e1920 , geometry = QRectF(79,6.5 0x0) , z = 1 ) 
    the position really changed, so call all children recursively 
    Cocos2DWrapper: callTransformForAllChildrenRecursively() for node 0x114eef8f0 
    Cocos2DWrapper: callTransformForAllChildrenRecursively() for node 0x114ef0480 
    Cocos2DWrapper: callTransformForAllChildrenRecursively() for node 0x114ef05d0 
    Cocos2DWrapper: callTransformForAllChildrenRecursively() for node 0x114eefb70 
    Cocos2DWrapper: callTransformForAllChildrenRecursively() for node 0x114eefcc0 
    entityReleased position: 387 155.5 snapped position: 384 160
    EntityBaseDraggable: restoring property active to initial value false , current value: true of colliderComponent BoxCollider_QMLTYPE_27(0x111192650, "boxCollider")
    EntityBaseDraggable: restoring property categories to initial value 1 , current value: 65535 of colliderComponent BoxCollider_QMLTYPE_27(0x111192650, "boxCollider")
    EntityBaseDraggable: restoring property collisionTestingOnlyMode to initial value false , current value: true of colliderComponent BoxCollider_QMLTYPE_27(0x111192650, "boxCollider")
    entity got released, create it at the position if allowed to build
    DragEntity: no creationProperties were defined
    EntityManager: createEntityFromUrl: file:///Users/philipp/CrazyElephant-build-desktop-Desktop_Qt_4_8_1_for_GCC__Qt_SDK__Debug/CrazyElephant.app/Contents/Resources/qml/entities/DraggableEntity.qml
    VisualItemPropertyObserver componentComplete for item EntityBaseDraggable_QMLTYPE_76 (this = 0x1042d3720 , parent = 0x1042e1920 , geometry = QRectF(384,160 0x0) , z = 1 ) 
    file::/qml/VPlay/core/EntitySelection.qml:15: Unable to assign [undefined] to QObject* target
    file::/qml/VPlay/core/EntitySelection.qml:9: ReferenceError: Can't find variable: sprite
    EntityManager: entity created with id file:///Users/philipp/CrazyElephant-build-desktop-Desktop_Qt_4_8_1_for_GCC__Qt_SDK__Debug/CrazyElephant.app/Contents/Resources/qml/entities/DraggableEntity.qml_99
    GameWindow: creating cocos item in cocosWrapper triggered by JavaScript code explicitly: EntityBaseDraggable_QMLTYPE_76(0x1042d3720, "file:///Users/philipp/CrazyElephant-build-desktop-Desktop_Qt_4_8_1_for_GCC__Qt_SDK__Debug/CrazyElephant.app/Contents/Resources/qml/entities/DraggableEntity.qml_99")

     

     

Viewing 9 results - 46 through 54 (of 54 total)
Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded