Hi Everyone,
I'm just getting started with tizen development and am learning Tizen Studio. Whenever I attempt to open the UI Builder with a standard sample or template project, the UI Builder opens then immediately closes. Here's a layout that I'm attempting to load, it's just the default one created with one of the templates:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document>
<mscreen>
<configuration device="CIRCLE_360x360" id="config1" name="common" orientation="portrait" type="common"/>
</mscreen>
<views startup="view1">
<view id="view1" indicator="true" type="view" page_location_x="0" page_location_y="0"/>
</views>
</document>
In reviewing the Tizen Studio log file I see the following entries output during this:
!ENTRY edjResourceSyncManager.ResourceFileDuplicator 4 0 2017-11-29 15:56:42.807 !MESSAGE [2017.11.29 15:56:42][ERROR] ?(?) - It failed to make directory : /tmpTIZEN_UIB_RES\ !ENTRY org.tizen.efluibuilder.internal.connector.Connector 4 0 2017-11-29 15:56:42.921 !MESSAGE [2017.11.29 15:56:42][ERROR] ?(?) - Renderer connection not found
Strange to see /tmpTIZEN_UIB_RES\ there...I'm wondering if that's supposed to be /tmp/TIZEN_UIB_RES?
I've discovered that if I edit the layout and remove the view I can get the UI Builder to load:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document>
<mscreen>
<configuration device="CIRCLE_360x360" id="config1" name="common" orientation="portrait" type="common"/>
</mscreen>
<views/>
</document>
But then attempting to add a View gives me a NullPointerError and then goes back to crashing.
Any ideas on what could be going wrong?
Thanks,
SaccoSpace