[Title]bug fix : app install failure
authorsanghyunnim.lee <sanghyunnim.lee@samsung.com>
Mon, 10 Dec 2012 08:15:55 +0000 (17:15 +0900)
committersanghyunnim.lee <sanghyunnim.lee@samsung.com>
Mon, 10 Dec 2012 08:15:55 +0000 (17:15 +0900)
[Desc.]
[Issue]

org.tizen.dynamicanalysis.ide.eplugin/src/org/tizen/dynamicanalysis/ide/eplugin/launch/TizenNativeApplicationProfileDelegate.java

index bd0d724..2c7ddd1 100644 (file)
@@ -393,7 +393,8 @@ public class TizenNativeApplicationProfileDelegate implements ILaunchConfigurati
                                                                        TizenLaunchCommand launcher = new TizenLaunchCommand(currentDevice);
                                                                        launcher.run(listCmd);
 
-                                                                       if (launcher.getEndLine().contains(listCmdRet)) {
+                                                                       String endLine = launcher.getEndLine();
+                                                                       if (endLine != null && endLine.contains(listCmdRet)) {
                                                                                // remove old application
                                                                                String removeCmd = manifest.getRemoveCommand(packageName);