AzureBlobStorageSampleApp Save Abandoned

iOS and Android app made using Xamarin.Forms that explores Azure Blob Storage

Project README

AzureBlobStorageSampleApp

This Xamarin app uses a SQLite Database to save the metadata of the Photos (e.g. Url, Title) locally. The local database syncs, via an Azure Function, with an Azure SQL Database that contains the metadata of the Photos stored in Azure Blob Storage.

The Xamarin app also allows the user to take photos and save them to Azure Blob Storage. To do this, the Xamarin app uploads the image to an Azure Function, and the Azure Function saves the image in Azure Blob Storage, then adds the image metadata to the Azure SQL Database.

Learn More

Azure Blob Storage Sample App Diagram

Getting Started

1. Publish The Function App to Azure

  1. In Visual Studio, right-click on AzureBlobStorageSampleApp.Functions and select Publish

  1. Choose Azure Function App -> Create New -> Publish

  1. Fill out details:
  • App Name: Pick a name for your app within Azure
  • Subscription: Select your Azure subscription
  • Resource Group: Pick a resource group or create a new one
  • Hosting Plan: Pick a name, a region close to you, and for Size I chose Consumption
  • Storage Account: Create a new one. Pick a name, for Account Type I chose: Standard - Locally Redudant Storage
  1. Click Create

  2. This will take a couple minutes to deploy; confirm its existance in the Azure portal. We're done with the Function for now, but we'll be back to grab a couple values and add a couple values to the Application Settings.

2. Create Azure SQL Database

  1. In the Azure portal, click on New -> Enter SQL Database into the Search Bar -> Select SQL Database from the search results -> Click Create

  1. Name the SQL Database
  • I named mine XamListDatabase
  1. Select the Subscription
  • I selected my Visual Studio Enterprise subscription
  • If you do not have a VS Enterprise Subscription, you will need to select a different option
  1. Select the Resource Group you published your Function in
  2. Select Blank Database

6. Select Server

  1. Select Create New Server

  2. Enter the Server Name

  3. Create a Server admin login

  • Store this password somewhere safe, because we will need to use it for our database connection later!
  1. Create a password

  2. Select the closest location

  3. Click "Select"

  4. Select "Not Now" for the SQL Elastic Pool option

14. Select Pricing Tier

  1. Select Basic
  2. Move the slider to maximum, 2GB
  • Don't worry, it's the same price for 2GB as it is for 100MB.
  1. Click Apply
  2. Click Create

3. Get SQL Database Connection String

  1. On the Azure Portal, navigate to the SQL Database we created, above
  2. Click on "Connection Strings" -> "ADO.NET"
  3. Copy the entire Connection String into a text editor

  1. In the text editor, change "{your_username}" and "{your_password}" to match the SQL Database Username / Password created above
  • Don't use my username / password because it won't work ;-)

4. Connect SQL Database to the Azure Function App

  1. On the Azure Portal, navigate to the Functions App we published from Visual Studio
  2. Select "Application Settings"
  3. In the Application Settings, scroll down to the section "Application Settings"
  4. Create a new string
  • Set the name as PhotoDatabaseConnectionString
  • Make sure to use this exact name, otherwise the source code will not work
  • Copy/paste the Azure SQL connection string from the text editor as the corresponding value
  1. Scroll up and click Save (Note! If you don't click Save - the change will not be reflected.)

5. Create a (Blob) Storage Account

  1. In the Azure portal, click on New -> Enter Storage account into the Search Bar -> Select Storage acount from the search results -> Click Create

  1. In the next screen, you'll enter a few values
  • Select the Subscription and the Resource Group you have been working in
  • Create a Storage account name (note: letters in the name need to be lowercase)
  • Choose a location
  • For Performance, I chose Standard
  • For Account king, I chose StorageV2 (general purchase v2)
  • For Access tier, chose Hot
  1. Click Review and Create

6. Create a Blob container

  1. Click into the Storage account you created.

image

  1. On the left menu, under Blob service, click Blobs

  2. Click the "+ Container" button to create a new container

  3. Use "photos" for the Name, and for the purposes of this exercise, chose Public access level: Container (anonymous read access for containers and blob)

  • In future apps, you'll likely want to increase the privacy of your blob containers

7. Connect the (Blob) Storage Account to the Azure Function App

  1. In the Storage Account, click Access Keys which are under Settings

  2. You'll see key 1 and key 2 along with a Key and Connection String for each of those. Copy either of the Connection Strings.

  1. On the Azure Portal, navigate to the Functions App we published from Visual Studio

  2. Select "Application Settings"

  3. In the Application Settings, scroll down to "Application Settings"

  4. Create a new setting

  • Set the name as BlobStorageConnectionString
  • Make sure to use this exact name, otherwise the source code will not work
  • Copy/paste the Connection setting
  1. Create another setting
  • Set the name as PhotoContainerName
  • Make sure to use this exact name, otherwise the source code will not work
  • Type photos as the corresponding value (This is the name of the container you created earlier.)
  1. Scroll up and click Save (Note! If you don't click Save - the change will not be reflected.)

8. Configure Azure Function Url & Keys for Mobile App

  1. In BackendConstants.cs, you'll need to customize the value of FunctionsAPIBaseUrl to match yours
  • Notice the URL in the upper right of the photo. You'll only need to change the subdomain to match yours (ie. it is important that the URL in code retains the /api).
Open Source Agenda is not affiliated with "AzureBlobStorageSampleApp" Project. README Source: brminnick/AzureBlobStorageSampleApp

Open Source Agenda Badge

Open Source Agenda Rating