Fast-Android-Networking icon indicating copy to clipboard operation
Fast-Android-Networking copied to clipboard

🚀 A Complete Fast Android Networking Library that also supports HTTP/2 🚀

Results 118 Fast-Android-Networking issues
Sort by recently updated
recently updated
newest added

I have used android studio Chipmunk My settings.gradle file pluginManagement { repositories { gradlePluginPortal() google() mavenCentral() maven { url "https://jitpack.io" } } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral()...

what i understand is `upload()` in this library is using method 'post'. how to change it to 'put' ?

After adding (implementation 'com.amitshekhar.android:android-networking:1.0.2') this to my build.gradle. Error : Cannot resolve symbol 'AndroidNetworking. Please solve the issue.

hi when i add the blew link to my gradle to add this library i saw an error that say : could not solve com.amitshekhar.android:android-networking:1.0.1 what's the problem, i try...

Add a custom file name while uploading file using multipart body fix #412

If the file name is in Korean, an encoding error occurs when uploading the file. Added UTF-8 encoding.

`implementation 'com.amitshekhar.android:android-networking:1.0.2'` settings.gradle pluginManagement { repositories { gradlePluginPortal() google() mavenCentral() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() } } Error : Could not find com.amitshekhar.android:android-networking:1.0.2. Required by: project...

Hi there, I'm using this library to download pdf files from Google drive (on click method), when I download a simple pdf file, it shows total bytes correctly, but when...