eclipse-3.6

Unable to launch Android application in Eclipse; An internal error occurred during: “Launching myApp”

浪尽此生 提交于 2019-12-18 19:05:38
问题 I'm unable to start up my Android application in Eclipse, I'm getting the following error when I select "Run as Android Application" I have my Android Virtual Device running, can't see any issues with that (I'm able to navigate around the OS on the emulator etc) When I try to "Run as Application" I get the following popup from eclipse An internal error occurred during: "Launching myApp". When selecting "View Error Log" this is as much info as I can get java.lang.NullPointerException at com

Upgrading from Eclipse Galileo to Helios

一曲冷凌霜 提交于 2019-12-18 04:15:45
问题 Whats the best way to upgrade from Galileo to Helios whilst still preserving my settings and plugins? Thanks 回答1: The surest path to upgrade is to make a "parallel" installation: an Helios Eclipse beside the Galileo one you already have. Regarding your settings, you just need to reference the same workspace. In your eclipse.ini, indicate where your workspace is, and you will get back all your projects, workspaces and perspectives just as you left them. Plugins are trickier, and I would

opening and running Files in android eclipse [closed]

烂漫一生 提交于 2019-12-11 14:21:37
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 4 years ago . can I open and run downloaded file (.zip file) into android eclipse(Helios)? I wanna learn android,I found a source code and downloaded it. Thanks :) 回答1: Two ways are given bellow First: Unzip your project Choose "Create project from existing source " from toolbar In location:

Installing Android ADT plugin v9.0.0 on Eclipse Classic 3.6.1 failed

非 Y 不嫁゛ 提交于 2019-12-10 20:29:20
问题 I've followed instructions on developer.android.com carefully: I've downloaded Eclipse Classic 3.6.1 I've opened Help->Install New Software and added ADT Plugin site But install still fails to match all dependences. I've tried to add additional repositories, but it didn't help. Are there some clues for installing v9.0.0 ADT plugin on Eclipse 3.6.1 Classic properly? I've also tried this Correct install of Android SDK, ADT with Eclipse 3.6.1 - didn't help. 回答1: According to your log message you

Eclipse update problem?

前提是你 提交于 2019-12-08 04:44:57
问题 Please take a look here: alt text http://img16.imageshack.us/img16/2810/errrp.jpg Why i got that error when i'm trying to update my Eclipse Galileo to the newest Eclipse M6 Helios? I'm using the update URL from here: http://eclipsesource.com/blogs/2010/03/14/eclipse-3-6-m6-helios-available-for-download/ Is this a bug? If not, what can i do? Please help. Thanks! 回答1: Can you try the upgrade process after re-launching eclipse with the -clean option? Do you confirm you are using the http:/

Eclipse RCP: How to prevent multiple instances of RCP from launching?

我的梦境 提交于 2019-12-07 00:01:01
问题 I read on http://eclipse.geekyramblings.net/2010/12/14/preventing-multiple-instances/ on how to prevent multiple instances of your RCP from being launched. But when I made my RCP(It's a simple RCP based on the "Hello RCP" Template) executable and tried launching it, it throws me this error java.io.IOException: The location has not been set. at org.eclipse.core.runtime.internal.adaptor.BasicLocation.lock(BasicLocation.java:174) at testrcp.Application.start(Application.java:43) at org.eclipse

JADClipse not working with Eclipse 3.6

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-05 23:33:27
问题 Does Jadclipse work on Eclipse 3.6 ? I have installed Jadclipse 3.3.0 on my Eclipse 3.6 by copying the jar into the plugins directory and restated eclipse. Now I have the jadclipse menu under Windows->Preferences but when trying to de-compile any class it simply does not de-compile. I get the usual eclipse screen saying the source is unavailable. There are no errors in the Error Log . Any idea? 回答1: I eventually found the answer here. Running eclipse with -clean switch and setting the file

Packaging a native library into an APK

那年仲夏 提交于 2019-12-05 22:10:00
How do I do this from Eclipse? I can't find any way. I tried creating a build.xml with the following and adding it as the final builder: <?xml version="1.0" encoding="UTF-8"?> <project name="MobileRecovery" default="mergelibs"> <loadproperties srcFile="local.properties" /> <property file="ant.properties" /> <loadproperties srcFile="project.properties" /> <fail unless="sdk.dir" message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'" /> <!-- version-tag: custom --> <import file="${sdk.dir}/tools/ant/build.xml" /> <target name="mergelibs"> <apkbuilder

classpath, eclipse and java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

坚强是说给别人听的谎言 提交于 2019-12-05 19:20:37
I have seen & read over 10 similar questions but am still unable to figure it out. I am using windows7 / Eclipse Helios Service Release 1 / mysql-connector-java-5.1.13-bin.jar. Everything worked until yesterday, and noW I get this error. I am not aware of anything I did that could have caused this (but maybe still...). There are no duplicates of this file on my system (nor any other mysql-connector-*). I am not sure where eclipse is looking for this file, it is sitting under my projects \WebContent\WEB-INF\lib folder with several other .jarS. looking at the "project" menu -> properties and

eclipse cdt: add include path from pkg-config

ぐ巨炮叔叔 提交于 2019-12-05 02:24:57
问题 i want to add a dynamic configuration path (generated from pkg-config) to my project. (this is basically for third-party dependencies like boost, so workspace includes is not appropiate, and filesystem include neither because that would be hardcoded and every developer would have to change that manually) i am on project properties->c++ general->paths and symbols->includes tab->add...->add directory path->variables but i can only select among existing variables, how do i create a new variable