Problem When doing an Oauth request the following error is thrown “java.io.FileNotFoundException” Cause The request is not signed. Solution Sign the request first, before actually performing the request. You can either do this manually following the OAuth guidelines or use a simple 3rd signing library recommended by Oauth e.g. Signpost (https://code.google.com/p/oauth-signpost/)
Problem When trying to bind a view to a simple adapter the following error is thrown: “java.lang.IllegalStateException: android.widget.LinearLayout is not a view that can be bounds by this SimpleAdapter” Cause The LinearLayout layout.xml has an invalid attribute which is not compatible with the simple adapter e.g. an id attribute Solution Remove the invalid attribute from [...]
I came across this issue when working with Android ADT. My specific error was like: “No repository found at jar:file: ADT {version} .zip” Problem When trying to perform a “Check for Updates” in Eclipse the update fails with a message like “No repository found at jar:file:”. Cause A Plugin/Software was previously installed via an archive [...]