A simple demo app with three screens: a list screen, a read-only detail screen, and an editable detail screen.
Перейти к файлу
James Montemagno cbf2eddf3c
Update README.md
2020-03-25 16:38:56 -07:00
Automation/Bitrise.io_configs Updating Bitrise workflow config yml, even though the Android version bump step is missing for now until it's fixed. 2016-01-21 18:28:30 -06:00
Customers Removed some old commented out code. Cleaned up using statements. 2016-01-22 11:30:11 -06:00
Customers.UITests Added scroll down to in tests 2016-01-14 14:21:27 -08:00
Droid Removed old unused reference. 2016-01-21 12:55:30 -06:00
Screenshots Added all-in-one screenshot 2016-01-14 01:10:21 -06:00
iOS Updated IP name 2016-01-19 00:56:33 -06:00
.gitignore Update .gitignore 2016-01-13 19:03:32 -06:00
Customers.sln Added initial UITest project structure 2016-01-14 09:38:02 -08:00
LICENSE Initial commit 2016-01-04 16:49:49 -08:00
README.md Update README.md 2020-03-25 16:38:56 -07:00

README.md

Sample Deprecated & Replaced

This sample has officially been deprecated and replaced with the "My Contacts" sample application that showcases Xamarin.Forms and an ASP.NET Core backend.

This repo is left here for historical purposes, back links, and is read-only.

app-customers

A simple Xamarin.Forms demo app with three primary screens:

  • a list screen
  • a read-only detail screen
  • an editable detail screen

Includes integrations such as:

  • getting directions
  • making calls
  • sending text messages
  • email composition

##Build Status Build Status

Google Maps API key (Android)

For Android, you'll need to obtain a Google Maps API key: https://developer.xamarin.com/guides/android/platform_features/maps_and_location/maps/obtaining_a_google_maps_api_key/

Insert it in ~/Droid/Properties/AndroidManifest.xml:

<application android:label="Customers" android:theme="@style/CustomersTheme">\
  ...
  <meta-data android:name="com.google.android.geo.API_KEY" android:value="[YOUR API KEY HERE]" />
  ...
</application>

Screens