Fix Jira issue (TSAM-2484) 17/68217/1 submit/tizen/20160503.051039
authorDoHyun Pyun <dh79.pyun@samsung.com>
Tue, 3 May 2016 04:59:19 +0000 (13:59 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Tue, 3 May 2016 05:01:17 +0000 (14:01 +0900)
Can't open received file

http://suprem.sec.samsung.net/jira/browse/TSAM-2484

Change-Id: Ie2ce7e6f9c48a25c694fa0a97947d795442e5add
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
data/org.tizen.bluetooth-share-ui.xml
packaging/org.tizen.bluetooth-share-ui.spec
src/bt-share-ui-resource.h
src/bt-share-ui-view.c

index 89cf260..4b6c69e 100644 (file)
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.bluetooth-share-ui" version="0.0.14" install-location="internal-only">
+<manifest xmlns="http://tizen.org/ns/packages" package="org.tizen.bluetooth-share-ui" api-version="3.0" version="0.0.14" install-location="internal-only">
        <label>Bluetooth Share UI</label>
        <author email="injun.yang@samsung.com" href="www.samsung.com">Injun Yang</author>
        <description>Bluetooth Share UI application</description>
-       <ui-application appid="org.tizen.bluetooth-share-ui" exec="/usr/apps/org.tizen.bluetooth-share-ui/bin/bluetooth-share-ui" nodisplay="true" taskmanage="false" multiple="false" type="capp" process-pool="true">
+       <ui-application appid="org.tizen.bluetooth-share-ui" exec="/usr/apps/org.tizen.bluetooth-share-ui/bin/bluetooth-share-ui" nodisplay="true" multiple="false" type="capp" taskmanage="false">
                <icon>org.tizen.bluetooth-share-ui.png</icon>
                <label>Bluetooth Share</label>
        </ui-application>
index b7290ac..29946bc 100755 (executable)
@@ -9,7 +9,7 @@ Group:      TO_BE_FILLED
 License:    Flora-1.1
 Source0:    %{name}-%{version}.tar.gz
 
-%if "%{?tizen_profile_name}" != "mobile"
+%if "%{?profile}" != "mobile"
 ExcludeArch: %{arm} %ix86 x86_64
 %endif
 
index 66b5c27..8bcc941 100644 (file)
@@ -31,8 +31,8 @@ extern "C" {
 #include <libintl.h>
 
 /*==============  String ================= */
-#define BT_COMMON_PKG          "ug-bluetooth-efl"
-#define BT_COMMON_RES          "/usr/apps/ug-bluetooth-efl/shared/res/locale/"
+#define BT_COMMON_PKG          "ug-setting-bluetooth-efl"
+#define BT_COMMON_RES          "/usr/ug/res/locale/"
 
 #define BT_PKGNAME "org.tizen.bluetooth-share-ui"
 #define BT_PREFIX "/usr/apps/"BT_PKGNAME
index 77d333e..f7ad7c3 100755 (executable)
@@ -85,8 +85,9 @@ Evas_Object *_bt_create_win(const char *name)
        elm_win_borderless_set(eo, EINA_TRUE);
 #if 0
        ecore_x_window_size_get(ecore_x_window_root_first_get(), &w, &h);
-#endif
        evas_object_resize(eo, w, h);
+#endif
+
        return eo;
 }