ImageButton is a great addition in Android. However, it can generate a warning which can luckily easy to overcome. Description Resource Path Location Type: [Accessibility] Missing contentDescription attribute on image menu.xml /project/res/layout line 22 Android Lint Problem. To fix this add the following line in the xml at the ImageButton android:contentDescription=”@string/desc” Resolved this warning by setting
Tag: ErrorFix
Eclipse Android Tag Should Specify A Target API Level
Android SDK Tools revision 17 warning about API Level running in API 15, this properly occur in previous versions as well. Error: “Description Resource Path Location Type: <uses-sdk> tag should specify a target API level (the highest verified version; when running on later versions, compatibility behaviors may be enabled) with android:targetSdkVersion=”?” AndroidManifest.xml /inLogic line 7 Android
Eclipse Android Requires Compiler Compliance Level
After importing an existing Android application into a new workspace the following error can occur: “Your Project contains error(s), please fix them before running your application.” First thing to do is to look at the console output and read the error. In this case it told what the problem is and how to solve it!
Notepad++ plugin TextFX Unable to find libTidy.dll in system path
After Installing Notepad++ plugin TextFX and restarting the following error came: Unable to find libTidy.dll in the system path or C:\Program Files (x86)\Notepad++\plugins\Config\tidy\libTidy.dll Htmltidy is unable to find libtidy.dll. This is due to the plugin not being included in 5.9.3 and up to at least 5.9.8. This can be fixed by downloading Notepad++ 5.9.0 zip and extract the
Eclipse complains about jquery minified JS files
When using minified files in Eclipse it can caused errors when there shouldn’t be any. Eclipse complains when using jquery.min.js files. One solution is to ignore the specific file. Go to : Project->Properties->JavaScript->Include Path->Source-> Excluded Groups ignore specific files by adding a suitable exclusion pattern e.g. **/jquery*.js Solution found at bug report 349020 comment 15 via stackoverflow topic ignore
iOS Development Error: No identities are available for signing
When trying to publish an iOS app to app store the following error came when running the validate. “Choose an application record and an identity to sign with: No identities are available for signing” Now by searching the iOS Developer Library, guides and stackoverflow the problem could be several different things. However in this case
Eclipse failed, Java was started but returned exit code=-805306369
Eclipse suddenly started to hang when starting up around “Loading Workbench” 805306369. Eclipse stopped responding and you get the dialog to close the program. “Java was started but returned exit code=-805306369” The error shown afterwards: “Java was started but returned exit code=-805306369” If you are running java 1.6u21 then look at Eclipse Bug 319514 and The Oracle/Sun
Dreamweaver is unable to open PhoneGap in the emulator
“Dreamweaver is unable to open “PhoneGap” in the emulator. Please consult the buildlog at C:\Users\$name\Desktop\myapp.app_Android\buildlog.log for additional details.” Building PhoneGap application with Dreamweaver is fairly easy. PhoneGap app are build with HTML, CSS and Javascript. It can be created with any IDE or text editor, yes even vi on Linux. Adobe has made this possible