views:

39

answers:

1

Hi,

Simple question - if I am developing and Android application that wants to access Amazon cloud (AWS services) - can you suggest me options? More detailed for what I have done till now: I am trying to include existing AWS libraries for Java - but Dalvik does not support them all - finally the issue I am still not able to resolve is with AWS SDK third-party library stax-api-1.0.1.jar as it cannot be recompiled for Dalvik as others (Android complains I try to recompile a core-library)...

Please give any suggestions on those issues, Best, Sanja

+3  A: 

As I wrote previously, you may better served finding another way to access the Amazon AWS API that requires fewer third-party dependencies, such as typica, or simply invoking the query API directly using HttpClient.

CommonsWare
Hi,Thanks for the answer. But I am not sure wheter it solves the issue - I am aware of typica and jets3, but they are again dependent on those libraries I cannot compile to Android (particularly stax-api.jar as Dalvik complains I try to recompile core-library)... I posted this question on few more forums.
sanja7s
Maybe query API will be a solution - but it seems I will need to implement my own request signing and so - which seems a bit complex so I was trying to avoid...
sanja7s