Karthik Ramachandran
Karthik Ramachandran

Reputation: 12175

Why should I use Spring Android?

Anyone out here use Spring Android? If so, why do you think it's worth while?

Thanks

Upvotes: 21

Views: 5284

Answers (2)

Misagh Aghakhani
Misagh Aghakhani

Reputation: 1023

In addition Spring Android is useful to work with HTTP Request from your Android application. You don't need to use another Libraries like google-gson or jackson because spring supports them internally.

Upvotes: 3

earldouglas
earldouglas

Reputation: 13473

Spring Android is useful if you need to access RESTful Web services from your Android application. This is common in real-time data applications such as news and weather tickers, stock tickers, etc.

For now, there are two benefits to using the Spring Android project: commons logging and RestTemplate.

http://static.springsource.org/spring-android/docs/1.0.x/reference/htmlsingle/

Upvotes: 19

Related Questions