0e9ad5e363 | ||
---|---|---|
Customers | ||
Droid | ||
Screenshots | ||
iOS | ||
.gitignore | ||
Customers.sln | ||
Faker.Portable.dll | ||
LICENSE | ||
README.md |
README.md
app-customers
A simple Xamarin.Forms demo app with three 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
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>