What is http authentication? In some websites, http authentication is required while you trying to access it. A username and password is required to access the page. In android webview, the httpauthrequest not implemented by default. We need add additional…
Android Development
How to Check if String Array Contains a Specific String in Android
Here is how to get a specific value or String from Array in Android To check if a string array contains a specific string, you can use this code, this is a simple code and very useful First, let’s create…
Make Android WebView Support Razorpay Payment
How to Support Razorpay Payment and UPI in Android WebView? Android webview is inexpensive and easy way to make apps for websites. But to support some specific features of a website, for example – File upload, download, window handling etc,…
Make Android Webview Support PayTM Google Pay PhonePe UPI
GooglePay, Phonpe and PayTM support in Android WebView If you have built an android app for your new ecommerce website or any other website that needs accept payments from GPay, PhonePe, payTM and UPI etc, chances are you just realized…
How to Get GooglePlay Store Link of your App before Publishing
Here is How to Get your App’s GooglePlay Store Link before Publishing So you have built an app and is ready to upload it to play store, but you want include your app’s playstore link for sharing purposes, or you…
Online Android App Builder – Convert Your Website to App online
Welcome to Online Android App Building Page. Need an android app for your Website? We can build it for you in around 2 Hours! Need an android app? we can develop any types of android apps with your requirements. Here…
Fix Cannot fit requested classes in a single dex file
It’s a very common error in Android studio, and to fix it, you need to enable multidex so just add these codes in your gradle file and sync implementation ‘com.android.support:multidex:1.0.3’ defaultConfig { multiDexEnabled true
Here is How to Get Host Domain from URL in Android Java
Sometimes, we might need extract domain name such as www.google.com from the www.google.com/search=searchQuery. In android java, the code below can do it. It will output only the domain name after stripping other characters Java Code for getting host domain name…
Here is How to Hide or Show a View After Some Seconds in Android Java
How to show, hide, or do an action in android after some seconds – Android Studio Tutorial Sometimes, we need hide or show a view, open an activity or execute a methodĀ after a certain amounts of seconds or minutes…
Here is How to Fix java.lang.NoClassDefFoundError in Android Studio
Android Studio How to Fix java.lang.NoClassDefFoundError:failed resolution of :Lorg/apache/http/ProtocolVersion This is an error associated with the google-play-services libraries and the http apache library. To fix this, do the following Add dependency In your app-levelĀ build.gradle file, add the Maps dependency like…