To search in your project in Eclipse do the following: Ctrl + H Choose File Search for plain text in project. Choose the relevant tab for a specific expression searches.
To search in your project in Eclipse do the following: Ctrl + H Choose File Search for plain text in project. Choose the relevant tab for a specific expression searches.
Ran into this error when running Android application in Eclipse while upgrading SDK to version 20 “exported activity does not require permission” A Project > Clean fixed the error. If this didn’t work try take a look at this issue on…
This error “Failed to create BuildConfig Class” occurred when switching workspace. To fix it Clean the project and your project will compile without this error. Go to the menu Project -> Clean…
To to remove goto Help -> About Eclispe SDK -> Installation Details and select the feature you want to remove. More info: You should not remove plug-ins from Eclipse. Plug-ins should be installed as features using the Update Manager. The same Update…
When using the Calendar class in Android Java the default start of the week is Sunday. To change this use the following function setFirstDayOfWeek Calendar cal; cal.setCalendar(Calendar.getInstance()); cal.setFirstDayOfWeek(Calendar.MONDAY); cal.getInstance() set it to the current date. setFirstDayOfWeek takes an integer. Calendar.MONDAY is…
When running Eclipse or the Motodev Studio you may find yourself missing some windows when in either Java, DDMS, Debug, Team Synchronizing or the other perspectives. Being it the LogCat, Devices, Package Explorer etc. You might have closed it by…
In the DDMS in Eclipse Android you can get this error when you want to see the threads. ”Thread updates not enabled for selected client (use toolbar button to enable)” This can easily be fixed by pressing the thread icon button in…
When developing in Eclipse you might run into this error when using logging. In this case Java while developing for Andorid. “+++ LOG: entry corrupt or truncated” First thing to test is if you’re running First thing to test is…
If you want the get a screenshot on your Android mobile you can do that simply by holding down the power + volume down button for one second. In Eclipse to capturing an image from your Android device or simulator…
After connecting Eclipse Android project up to Team Foundation Server the application the following error occurred: Conversion to Dalvik format failed: Unable to execute dex: null After doing a Project -> Clean the problem got solved. If this does not solve…