Arun
Arun

Reputation: 136

Azure Mobile Apps FileSync support missing in Android SDK

This link https://azure.microsoft.com/en-us/blog/azure-app-service-updates-november-2015/ explains Azure mobile app support for Synching Files to the app services. The examples are in .NET SDK. I am looking for the same in Android SDK and these classes seem to be missing in the Android SDK documentation available here

Wondering how can I upload files to Azure blob storage using Azure Mobile App service. I have already created a data connection pointing to my Blog storage, however, I couldn't find a way to expose an API to create the file in blog storage other than using custom API.

Thanks in advance

Upvotes: 1

Views: 125

Answers (1)

Bruce Chen
Bruce Chen

Reputation: 18465

As Adrian Hall's blog about 30 DAYS OF ZUMO.V2 (AZURE MOBILE APPS): DAY 28 FILE HANDLING (V2) mentioned as follows:

Azure Mobile Apps has a File Management SDK that is in preview. It requires the ASP.NET Server SDK (so no Node support) and a .NET client (Xamarin or UWP, for example), so no iOS native, Android native or Cordova support.

The available code sample is talking about .NET clients. For example, App Service Mobile sample todo list client app with images.

For your requirement, you could only build your custom APIs for uploading files. Details you could follow 30 DAYS OF ZUMO.V2 (AZURE MOBILE APPS): DAY 27: FILE HANDLING (V1). Moreover, you could add your feedback here or add a issue under Microsoft Azure Mobile Apps: Android Client SDK.

Upvotes: 0

Related Questions