protected void setConfiguration(ILaunchConfiguration config, String mode,
IProgressMonitor monitor)
- // protected void setConfigIfNotFromShortcut(ILaunchConfiguration config,
- // String mode, IProgressMonitor monitor)
throws CoreException {
installPackages(config, mode, monitor);
}
import org.tizen.nativecommon.launch.TizenLaunchMessages;
import org.tizen.nativeplatform.build.PlatformConfigurationManager;
import org.tizen.nativeplatform.launch.ITizenLaunchConfigurationConstants;
+import org.tizen.nativeplatform.launch.PlatformLaunchMessages;
import org.tizen.nativeplatform.launch.wizards.PlatformAttachLaunchWizard;
import org.tizen.nativeplatform.launch.wizards.PlatformLaunchUtils;
import org.tizen.nativeplatform.launch.wizards.PlatformLaunchWizardDialog;
DialogUtil.openErrorDialog(TizenLaunchMessages.CANNOT_CONNECT_TO_DEVICE);
return;
}
+ if (!device.isRoot()) {
+ DialogUtil.openErrorDialog(PlatformLaunchMessages.DEVICE_IS_NOT_ROOT_ON);
+ return;
+ }
if (elements != null && elements.length > 0) {
int nElements = elements.length;
import org.tizen.nativecommon.launch.TizenLaunchMessages;
import org.tizen.nativeplatform.build.PlatformConfigurationManager;
import org.tizen.nativeplatform.launch.ITizenLaunchConfigurationConstants;
+import org.tizen.nativeplatform.launch.PlatformLaunchMessages;
import org.tizen.nativeplatform.launch.wizards.PlatformLaunchUtils;
import org.tizen.nativeplatform.launch.wizards.PlatformLaunchWizard;
import org.tizen.nativeplatform.launch.wizards.PlatformLaunchWizardDialog;
DialogUtil.openErrorDialog(TizenLaunchMessages.CANNOT_CONNECT_TO_DEVICE);
return;
}
+ if (!device.isRoot()) {
+ DialogUtil.openErrorDialog(PlatformLaunchMessages.DEVICE_IS_NOT_ROOT_ON);
+ return;
+ }
if (elements != null && elements.length > 0) {
int nElements = elements.length;
+* 2.1.17
+- Check if device is root before launching launch wizard
+== donghyuk yang <donghyuk.yang@samsung.com> 2013-06-24
+* 2.1.16
+- Added default include path
+== donghyuk yang <donghyuk.yang@samsung.com> 2013-06-24
* 2.1.15
- Added platform_includes.xml file for setting include path to platform project as default
- Supported header tracing (set default includes from xml)
<includepath>${SBI_SYSROOT}/usr/include/sys</includepath>
<includepath>${SBI_SYSROOT}/usr/include/video</includepath>
<includepath>${SBI_SYSROOT}/usr/include/xen</includepath>
+<includepath>${SBI_SYSROOT}/usr/include/eina-1</includepath>
+<includepath>${SBI_SYSROOT}/usr/include/aul</includepath>
+<includepath>${SBI_SYSROOT}/usr/include/rua</includepath>
+<includepath>${SBI_SYSROOT}/usr/include/vconf</includepath>
+<includepath>${SBI_SYSROOT}/usr/include/appcore</includepath>
+<includepath>${SBI_SYSROOT}/usr/include/sysman</includepath>
+<includepath>${SBI_SYSROOT}/usr/include/feedback</includepath>
+<includepath>${SBI_SYSROOT}/usr/include/c++/4.5.3/tr1</includepath>
</language>
</section>
-Version:2.1.15
+Version:2.1.17
Source:nativeplatform-eplugin
Maintainer:Kangho Kim <kh5325.kim@samsung.com>, Yoonki Park<yoonki.park@samsung.com>, Hyunsik Noh<hyunsik.noh@samsung.com>, Gun Kim<gune.kim@samsung.com>, Ho Namkoong<ho.namkoong@samsung.com>, Taeyoung Son<taeyoung2.son@samsung.com>