Tell Me Solution
Tuesday, October 18, 2016
Thursday, March 26, 2015
Android fragments overlapping issue
set a background color to your <fragment /> ... in xml file.Solve this problem.
Friday, February 20, 2015
Error:compileSdkVersion android-21 requires compiling with JDK 7
If you have already upgraded to Java 8, please note that the JDK location is now within /Library/Java compared to Java 6's location /System/Library/Java. So to fix this problem,
Right click on the Project folder > Project Structure > SDK Location.
Then change JDK location to
/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home
To find the default JDK location, run the java_home script
/usr/libexec/java_home
Friday, September 20, 2013
How to fix hex digit 99 error on iOS 7
Now enjoy :)
Sunday, January 1, 2012
Android requires .class compatibility set to 5.0
“Android requires .class compatibility set to 5.0. Please fix project properties.” What’s this? It’s the error I received after cloning a repository and trying to import it into Eclipse. There is reasonably little information online about this, couple discussions on mailing lists but I figured I would write a post on the solution to this.
After importing the project to your workspace, you’ve received the error. So what you need to do next is to right click on the project -> Android Tools -> Fix Project Properties. Now this alone won’t fix the problem, you need to restart Eclipse after this. After that try building the project again and it should work successfully this time (unless you have bugs in the code itself, I did).
Hope that helps people. This my first time tinkering with someone else’s Android codebase. I’m excited!
It also might help if I mention that some things, the Android Launcher, require the full android code base in order to compile properly.
