I tried to create a client for azure blob storage on my android project.
CloudStorageAccount storageAccount = CloudStorageAccount.parse(GlobalClassHelper.storageConnectionString);
or
StorageCredentials cred = StorageCredentials.tryParseCredentials(GlobalClassHelper.storageConnectionString);
Both failed due to Utility class threw VerifyError. It gave the same error when I tried to do:
Utility.assertNotNull("test", "test");
Is it because the Utility class has these javax references?
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamConstants;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;

I tried to create a client for azure blob storage on my android project.
CloudStorageAccount storageAccount = CloudStorageAccount.parse(GlobalClassHelper.storageConnectionString);
or
StorageCredentials cred = StorageCredentials.tryParseCredentials(GlobalClassHelper.storageConnectionString);
Both failed due to Utility class threw VerifyError. It gave the same error when I tried to do:
Utility.assertNotNull("test", "test");
Is it because the Utility class has these javax references?
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamConstants;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;