I\'m consuming the android azure storage API with the following code:
try
{
// Retrieve storage account from connection-string.
CloudStorageAccount stora
First things first, lets check off the basics that tend to cause odd errors. :)
If neither of these are your issues, then could you do the following?
Leaving the debugging steps for others, but here the full stack trace gives the answer. In the full strack trace you can see a NetworkOnMainThreadException with the message 'Network operations may not be performed on the main thread.' Because network operations can be slow, Android prevents them from being made on the main thread by default. If you search this error you'll find a variety of examples on how to work with network operations without blocking the UI thread.