android-simpl3r alternatives and similar packages
Based on the "SDK" category.
Alternatively, view android-simpl3r alternatives based on common mentions on social networks and blogs.
-
card.io-Android-SDK
card.io provides fast, easy credit card scanning in mobile apps -
Android-ReactiveLocation
Small library that wraps Google Play Service API in brilliant RxJava Observables reducing boilerplate to minimum. -
aws-sdk-android
AWS SDK for Android. For more information, see our web site: -
PayPal-Android-SDK
Accept PayPal and credit cards in your Android app -
LandscapeVideoCamera
Powerful custom Android Camera with granular control over the video quality and filesize, restricting recordings to landscape only. -
android-checkout
Library for Android In-App Billing (Version 3+) -
Applozic-Android-Chat-Messaging-SDK
Official Android SDK for Applozic Real-time Chat & Messaging. Powerful client, offline support, and UI component libraries for awesome in-app chat features. -
countly-sdk-android
Countly Product Analytics Android SDK -
WeatherLib
Android Weather Library: android weather lib to develop weather based app fast and easily -
ANE-Facebook
Air Native Extension (iOS and Android) for the Facebook mobile SDK -
poly-picker
Android library project for providing multiple image selection from the device. -
socialauth-android
SocialAuth repository which contains socialauth android version and samples -
android-donations-lib
Donations library for Android. Supports Google Play Store, Flattr, PayPal, and Bitcoin -
MultipleImageSelect
Android library that provides for multiple image selection. -
Office-365-SDK-for-Android
Microsoft Services SDKs for Android produced by MS Open Tech. -
Chat21 SDK Documentation
Android Chat SDK built on Firebase -
Clusterkraf
A clustering library for the Google Maps Android API v2 -
Horoscope-API
Horoscope API for android to get the horoscope according to the sunsign -
Smartlook Android SDK
Qualitative Analytics for Android Apps -
LinkedIn-SDK-Android
A lightweight android library to implement Login with LinkedIn in your Android app. -
Twiiter Helper
A helper library that helps making twitter integration easy
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of android-simpl3r or a related project?
README
Simpl3r
Amazon S3 multipart file upload for Android, made simple
This library provides a simple high level Android API for robust and resumable multipart file uploads using the Amazon S3 service. All the complexity of file chunking, resuming, entity tag caching and interaction with Amazon's S3 API is abstracted from the developer.
This library manages synchronous file part uploads only. Part uploads performed in parallel are generally not suitable for mobile bandwidths.
Usage
Uploads can be initiated as follows:
AmazonS3Client s3Client = new AmazonS3Client(
new BasicAWSCredentials(YOUR_S3_ACCESS_KEY, YOUR_S3_SECRET));
File file = new File("path/to/some.file");
String s3Key = file.getPath();
// create a new uploader for this file
Uploader uploader = new Uploader(this, s3Client, YOUR_S3_BUCKETNAME, s3Key, file);
// register listener for upload progress updates
uploader.setProgressListener(new UploadProgressListener() {
@Override
public void progressChanged(ProgressEvent progressEvent,
long bytesUploaded, int percentUploaded) {
// broadcast/notify ...
}
});
// initiate the upload
String urlLocation = uploader.start();
Subsequent Uploader
instances or calls to start()
using the same s3key
will attempt to resume the upload from the beginning of the last part that was uploaded successfully. A SharedPreferences
instance for the supplied Context
is used to cache the part ETags, or you can supply your own. You can also supply your own part size to the Uploader
, but note that the minimum for the S3 API is 5 megabytes.
This project contains a working example project which more fully demonstrates its usage.
Dependencies
This library depends upon the AWS SDK for Android, specifically the following components:
aws-android-sdk-<VERSION>-core.jar
aws-android-sdk-<VERSION>-s3.jar
Building
Run ant jar
from the project directory or simply download a pre-built version from the builds
directory of this GitHub repository.
Credits
Author: Jeff Gilfelt
License
Copyright 2012 readyState Software Limited
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 android-simpl3r README section above
are relevant to that project's source code only.