Questions tagged [azure-android-sdk]

This SDK helps developers to add a cloud-based backend service to an Android app using Azure Mobile Services.

19 questions
4
votes
1 answer

Android Azure Storage Blob upload with SAS; com.microsoft.azure.storage.StorageException: The specified resource does not exist

I am trying to upload a file to Azure Storage as blob from android using Microsoft Azure Storage SDK for Android and Azure Mobile service. Actually I wasn't able to find any sample code using the Shared Access Signature (SAS) in android. The above…
3
votes
1 answer

Authenticate the user on Azure AD using ADAL library from Android native app

We have a requirement where users should signin from Native apps(Android, iOS) without invoking Microsoft login web view window from the app. We have the sample code that demonstrates non-interactive authentication to Azure AD using a username &…
Sarva
  • 313
  • 1
  • 3
  • 13
3
votes
1 answer

Server side conflict resolving, Azure Mobile Services (.NET backend)

I want to know if there is a way to detect and resolve conflicts from .NET backend server project of Azure mobile services. I know how to do it from the client side, but the first approach will solve some of my problems. Thank you!
2
votes
2 answers

Azure Notification Hub Unauthorized Exception

After tracing the link below, my dummy Android application always got an unauthorized notification hub exception https://azure.microsoft.com/en-us/documentation/articles/notification-hubs-android-get-started/ What could be the reason for this…
Arda Güçlü
  • 728
  • 2
  • 6
  • 27
2
votes
1 answer

Registration Azure Notification Hub in WebApi backend from Android client

We are using Asp.Net WEBAPI 2.2 with OWIN middleware for authentication. We try to integrate Azure Notification Hub for our platform. However, we could not find a best way for registrating our Android client to Azure Notification Hub through our…
1
vote
1 answer

Error while processing request on Azure

I have an app connected with Azure backend. I created a login and some api calls 2 months ago. They worked fine until a few days ago and then it starts to fail "sometimes". The login log onFailure says: Error while authenticating user The callback…
1
vote
2 answers

Do I need to call MobileServiceSyncContext.initialize in each Activity?

When using offline sync with Azure Mobile Services Android SDK, do I need to call MobileServiceSyncContext.initialize in each Activity that requires access to some table? If so, why? The local database shouldn't be initialized only once? Am I doing…
0
votes
0 answers

How do I build and implement a SearchClient in my android app using java?

I am trying to build a cognitive search client using Microsoft azure cognitive search to query my indexer which has already indexed my data on the azure portal. What could possibly be the problem? is there an error with the compatibility of the…
Joel Tan
  • 1
  • 1
0
votes
1 answer

Android MSAL Login failed incase if My app is already Auto enrollment successful using Company portal app

We are migrating our authentication of Azure from ADAL to MSAL. Our app support Intune feature. We are facing login failure during MSAL login, if the app is already automatically enrolled using Company portal app or open-in work flow from the other…
0
votes
1 answer

Does azure-communication-calling android sdk support external cameras?

Does azure-communication-calling android sdk support external cameras?
0
votes
1 answer

NoClassDefFoundError: Failed resolution of: Lcom/microsoft/trouterclient/registration/ISkypetokenProvider

I'm trying to use azure chat and calling in the same application. Right now I'm getting an error java.lang.NoClassDefFoundError: Failed resolution of: Lcom/microsoft/trouterclient/registration/ISkypetokenProvider; at…
0
votes
2 answers

Azure Communications UI: Unable to join call

I'm coming across an error in the quickstart library of the communications Ui. In the startCallComposite private fun startCallComposite() { val communicationTokenRefreshOptions = CommunicationTokenRefreshOptions({ fetchToken() }, true) val…
0
votes
2 answers

Failed to Create document in to azure Cosmos-db using Azure Android SDK

I am using azure android SDK for adding new records into collection items. We don't have partition keys for our cosmos-DB. so I am passing as null for it. it will give me the below error partition key supplied in x-ms-partitionkey header has fewer…
Karan Ekkawala
  • 317
  • 1
  • 11
0
votes
1 answer

Error while processing request in AzureMobile Apps HTTP2 error

This question is specific to a lately strange behavior of the Azure mobile Apps Android sdk. Everything was working fine for weeks. Now, my android client app suddenly can't connect to my web app any more. A Toast says "Error while processing…
0
votes
1 answer

Web Application Authentication for Azure AD using Android ADAL

Scenario: I have a service hosted in Azure. The service hosts a questions database. I want my android app to get the data from the service with Web Application Authentication and not Delegated Authentication. Basically I don't want users to sign in.…
1
2