Popularity
0.7
Stable
Activity
0.0
Stable
6
1
3

Description

This library is very efficient for users who are still using AsyncTasks to post data.

Programming language: Java
Tags: HTTP     Android     Utility     Android-library     asyncTasks     Http-post    

UniversalAsyncHandler alternatives and similar packages

Based on the "Utility" category.
Alternatively, view UniversalAsyncHandler alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of UniversalAsyncHandler or a related project?

Add another 'Utility' Package

README

UniversalAsyncHandler

UniversalAsyncHandler to provide http post requests efficiently...

This library is very efficient for users who are still using AsyncTasks to post data.

Only you have to add jitpack in your root build.gradle :

allprojects {   
    repositories    
    {   
        ...     
        maven { url 'https://jitpack.io' }  
    }   
}   

and add the dependency in app.gradle :

dependencies {  
        compile 'com.github.rohitpuriji:UniversalAsyncHandler:-SNAPSHOT'
    }

This library made with java8 so add the jack option inside defaultCondig in your app gradle file :

    minSdkVersion 16
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    jackOptions {
        enabled true
    }

and add compile ad dex options :

  dexOptions {
    incremental true
}

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

now you can simply create a post request by using "HttpPostCaller" class and its method getReponse() this will return object type like this :

Object object = HttpPostCaller.getResponse(MainActivity.this,"Your post url", Your jsonobject,"Your loading message...");
    if (object instanceof  String){
        AppLogs.printLogs("response :",object.toString());
    }

Developed By

## Rohit Puri

License

Copyright Rohit Puri Copyright (C) 2011 The Android Open Source Project

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.


*Note that all licence references and agreements mentioned in the UniversalAsyncHandler README section above are relevant to that project's source code only.