Android Question Depending on external web sites.

barx

Well-Known Member
Licensed User
Longtime User
Relying on Web services always has a level of risk. No matter how reliable the service is. If the device has no net connection then the service won't work.
 
Upvote 0

keirS

Well-Known Member
Licensed User
Longtime User
iamwithstupid.gif
In my experience a bad or no net connection is the killer. I think a bad connection is actually more of a problem than no connection as it's far more frustrating for the user. Not sure if it's even possible to measure 3G/4G QOS on Android. If it is it would be a great facility to have in B4A.
 
Upvote 0

NJDude

Expert
Licensed User
Longtime User
There are APIs out there that are web based only, yes, they depend on internet connectivity but it's the developer's responsibility to incorporate an error control routine into the library to notify the user about any communication issue.

There' s no risk using an online API, the only thing to keep in mind is that the provider should be a reputable source to assure that the API won't suddenly disappear.
 
Upvote 0

LucaMs

Expert
Licensed User
Longtime User
There are APIs out there that are web based only, yes, they depend on internet connectivity but it's the developer's responsibility to incorporate an error control routine into the library to notify the user about any communication issue.

There' s no risk using an online API, the only thing to keep in mind is that the provider should be a reputable source to assure that the API won't suddenly disappear.


In fact, I was referring to this second part.

In addition, it may not disappear but begin to request payments or increase them.
 
Upvote 0
Top