aws-sdk-android alternatives and similar packages
Based on the "SDK" category.
Alternatively, view aws-sdk-android 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. -
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 -
poly-picker
Android library project for providing multiple image selection from the device. -
socialauth-android
SocialAuth repository which contains socialauth android version and samples -
ANE-Facebook
Air Native Extension (iOS and Android) for the Facebook mobile SDK -
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 -
android-simpl3r
Amazon S3 multipart file upload for Android, made simple -
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 Firebase alternative introduces iOS support
* 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 aws-sdk-android or a related project?
README
AWS SDK for Android
For new projects, we recommend interacting with AWS using the Amplify Framework.
The AWS SDK for Android is a collection of low-level libraries for direct interaction with AWS backend services. For use cases not covered by the Amplify Framework, you may directly integrate these clients into your Android app.
Installation
The AWS SDK for Android can be directly embedded via .aar
files, or you can download it from the Maven Central repository, by integrating it into your Android project's Gradle files.
From Maven
We recommend obtaining the dependency from Maven. To do so, add a dependency to your app's (module-level) build.gradle
, in the dependencies
section:
dependencies {
implementation 'com.amazonaws:aws-android-sdk-SERVICE:2.x.y'
}
Above, SERVICE might be s3
, ddb
, pinpoint
, etc. A full list is provided below.
Available Modules
- apigateway-core
- auth-core
- auth-facebook
- auth-google
- auth-ui
- auth-userpools
- chimesdkidentity
- chimesdkmessaging
- cloudwatch
- cognitoauth
- cognitoidentityprovider
- cognitoidentityprovider-asf
- comprehend
- connect
- connectparticipant
- core
- ddb
- ddb-document
- ddb-mapper
- ec2
- iot
- kinesis
- kinesisvideo
- kinesisvideo-archivedmedia
- kinesisvideo-signaling
- kms
- lambda
- lex
- location
- logs
- machinelearning
- mobile-client
- pinpoint
- polly
- rekognition
- s3
- sagemaker-runtime
- sdb
- ses
- sns
- sqs
- testutils
- textract
- transcribe
- translate
SDK Fundamentals
There are a few fundamentals that are helpful to know when developing against the AWS SDK for Android.
- Never embed credentials in an Android application. It is trivially easy to decompile applications and steal embedded credentials. Always use temporarily vended credentials from services such as Amazon Cognito Identity.
- Unless explicitly stated, calls are synchronous and must be taken off of the main thread.
- Unless explicitly stated, calls can always throw an AmazonServiceException or an AmazonClientException (depending on if the exception is generated by the service or the client respectively).
- The SDK will handle re-trying requests automatically, but unless explicitly stated will throw an exception if it cannot contact AWS.
- We are always looking to help, please feel free to open an issue.
Versioning
The Android SDK is versioned like 2.x.y
. 2
is a product identifier that never changes. x
is bumped when there are breaking changes. y
is bumped for not-breaking bugfixes, or for the introduction of new features/capabilities.
Building the SDK
Pre-requisites
The AWS Core Runtime (aws-android-sdk-core
) module builds against Android API Level 23. Please download and install Android API Level 23 through SDK Manager in Android Studio, before building the SDK.
Set the ANDROID_HOME
environment variable, to the root directory of your Android SDK installation.
For example, on a Mac OS X where Android Studio has been installed, the SDK comes bundled with it.
export ANDROID_HOME="$HOME/Library/Android/sdk"
Build
./gradlew build
Consuming Development Versions
Once you've built the SDK, you can manually install the SDK by publishing its artifacts to your local Maven repository.
The local Maven repository is usually found in your home directory at
~/.m2/repository
.
To publish the outputs of the build, execute the following command from
the root of the amplify-android
project:
./gradlew publishToMavenLocal
After this, you can use the published development artifacts from an app.
To do so, specify mavenLocal()
inside the app's top-level
build.gradle(Project)
file:
buildscript {
repositories {
mavenLocal() // this should ideally appear before other repositories
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
}
}
allprojects {
repositories {
mavenLocal() // this should ideally appear before other repositories
}
}
Then, find the VERSION_NAME
of the library inside gradle.properties
file.
Use the above version to specify dependencies in your app's build.gradle (:app)
file:
dependencies {
implementation 'com.amazonaws:aws-android-sdk-SERVICE:VERSION_NAME'
}
Talk to Us
Come chat with us on our Discord Channel.
Report bugs to our GitHub Issues page.
Author
Amazon Web Services
License
See the LICENSE.txt
for more info.
*Note that all licence references and agreements mentioned in the aws-sdk-android README section above
are relevant to that project's source code only.