Reputation: 979
I used Azure Mobile Services from My android app using URL and API key for SQL Database Access,but currently that Mobile app Services No longer Available.
Please Help me how to Configure with New App Services from Android App.
Code I Used for Mobile service Config from Azure to android App:
// Mobile Service URL and key
mClient_User = new MobileServiceClient(
"https://****.azure-mobile.net/",
"******************",
this).withFilter(new ProgressFilter());
Upvotes: 0
Views: 107
Reputation: 13918
According to the document,
Migrating a service just changes the underlying environment that hosts your mobile backend. It requires no code changes to either the mobile client or the mobile server project. If you use the automated migration option, this preserves your service.azure-mobile.net URL.
Specially per your issue, please check with the following points:
MS_TableConnectionString
existing, add a new one and reference to your Azure SQL database.Any further concern, please feel free to let me know.
Upvotes: 1