ShareThis

Showing posts with label Eclipse. Show all posts
Showing posts with label Eclipse. Show all posts

Friday, June 7, 2013

How to get Eclipse Marketplace for Eclipse Classic

Eclipse Classic leaves off the marketplace, which can make finding plugins a bit difficult. It is easy to fix:

Help → Install new Software → Switch to the Juno Repository → General Purpose Tools → Marketplace Client

Sunday, April 1, 2012

How to use Dropbox to sync Android Projects


Hello avid android programmers. If you're like me, you have at least two stations that you program on. A laptop and a desktop pc. In the past you've had some trouble getting android applications to sync between your computers and the workspace on dropbox.

Here is the problem: Workspaces are unique to the computer they are on and the location they are at. So having the same workspace usable from TWO pcs causes them to clash (and subsequently breaks your android builds).

The fix: It is actually really simple. All you need to do is retain the original workspaces on each PC. You dont want to sync the workspace on dropbox (unless only one PC uses it.)

From the secondary pc, or both if you prefer, import the project folder into your eclipse workspace. Do not copy the files into your workspace ( we need them to reference the synced files! ).

You should now be able to run the android emulator and app fine without any startup errors on your secondary device!

Cheers,
Joe


Saturday, October 15, 2011

Android Eclipse: Package Name must have at least two identifiers

Was trying to start Android project using Eclipse, but encounter a strange error when creating new Android project

"Package name must have at least two identifiers."
Realize that is because the package name entered was: newproject. To work around with it you must name the package like this: com.android.newproject

Another error
"The API level for the selected SDK target does not match the Min SDK version"
The value for "Min SDK Version" suppose to be the "API level" in the "Build Target" field.

Sample