Source not found Android?

ran into a problem in the Eclipse android development tool

Source not found EDIT SOURCE LOOKUP PATH 

while I am debugging the code in the Instrumentation.class class on the line @param info ActivityInfo from the manifest

error above.

Can someone help me solve this problem? I am new to Android development.

+4
source share
5 answers

Android API sources are not included in the SDK download. Therefore, when debugging goes to the Android class, Eclipse will throw an error.

Take a look at these questions on how to add a source to Eclipse .

+8
source

Check the eclipse build path if the folder containing the source code is indeed in a specific build path.

0
source

I came across the same error. This is due to the variable used to change the background color of the application. I created varibale in string.xml as mycolor = "# FF3344" and added it as the background Layerar Layout. This is more like a coding error.

0
source

If any special function requires a special function, it must be registered on the manifestfile to allow processing of this function. If you do not register it in the manifest file, then

source not found

POWER SUPPLY IMAGE

will happen when you are in debug mode.

I would recommend focusing specifically on the uses-permission tag in the manifest file.

0
source

Probably the problem is the wrong coding. Check out the AndroidManifest.xml file.

0
source

All Articles