Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Java AWS SDK Vs Android AWS SDK on Android

Is it possible to use the Java AWS SDK instead of the Android AWS SDK when building an app? Either way Java is the underlying technology used.

I'm looking to use some services that are not available in the Android version of the SDK.

like image 772
Rupert Cobbe-Warburton Avatar asked Sep 12 '25 21:09

Rupert Cobbe-Warburton


1 Answers

AWS Java SDK and AWS Android SDK look very similar. Most APIs are identical. However, AWS Android SDK is optimized for Android platform, in terms of jar size, method count, and memory usage. Even though with great similarity, you can't use AWS Java SDK on Android directly. One noticeable problem is that it has a dependency of Apache HttpClient 4.2+ which is not compatible with Android. BTW, what services do you plan to use in particular?

like image 157
Yangfan Avatar answered Sep 14 '25 10:09

Yangfan