Menu
Home
Recent Posts
Android SDK installation doesn't find Java JDK
7:41 AM
0
Share
In order to fix this press
Back
when you get the notification and then
Next
. This time it will find the JDK.
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Development and programming answers
Search articles
Popular Posts
How to solve: Notice: Array to string conversion
This simply happens if you try to treat an array as a string: $arr = array ( 'foo' , 'bar' ); echo $arr ; // Notice:...
How to solve: Fatal error: Call to a member function ... on a non-object
This happens with code similar to xyz->method() where xyz is not an object and therefore that method can not be called. This ...
How to return the response from an AJAX call
function foo() { var result; $.ajax({ url: '...', success: function (response) { result = res...
iOS: performSelector may cause a leak because its selector is unknown
Here's what I'm doing: [ _controller performSelector : NSSelectorFromString (@ "someMethod" )]; The solution for this e...
How to: Insert 'if not exists' in MySQL without query previously from PHP
use INSERT IGNORE INTO table see http://bogdan.org.ua/2007/10/18/mysql-insert-if-not-exists-syntax.html there's also INSERT … ON D...
No comments:
Post a Comment