Programmer to Programmer- A website for web programming and mobile application programming tutorials Blog

How to solve java.lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/util/ByteArrayBuffer 0

How to solve java.lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/util/ByteArrayBuffer

To solve the this problem just put the following code[<uses-library android:name=”org.apache.http.legacy” android:required=”false”/>] below tag on the manifiest tag. For eg: <application android:icon=”@drawable/icon” …… android:theme=”@style/AppTheme.NoActionBar”> <uses-library android:name=”org.apache.http.legacy” android:required=”false”/> This problem is caused by targeting target...

How to convert Mysql Database to SQLite database? 0

How to convert Mysql Database to SQLite database?

I have found a simple way to convert the Mysql Database into SQLite database. Following are the steps: Open PhpMyadmin on your browser. (eg. http://localhost:8888/phpmyadmin) Select database and click on Export. Make sure SQL...

How to make Facebook comment box responsive? 4

How to make Facebook comment box responsive?

Responsive sites are very important now a days. Because it ranks well in the search engines. Sometimes third party widgets like facebook like box and comment box can perform worst. In such case you...

How to perform case insensitive array search in php? 1

How to perform case insensitive array search in php?

Searching is a usual and regular task in programming. Letters case sensitivity is a problematic in searching. Hence, both search string and array string should be converted into same case before searching. Otherwise searching...

How to completely remove filezilla from macOS ? 0

How to completely remove filezilla from macOS ?

Sometimes Filezilla creates problem connecting to server with FTP. The easiest solution is to check the connection from another computer. If it worked on another computer then there is something wrong in your computer’s...