Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created May 8, 2018 23:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/118496eba4fe6d6bd041c0d207417e92 to your computer and use it in GitHub Desktop.
Save juucustodio/118496eba4fe6d6bd041c0d207417e92 to your computer and use it in GitHub Desktop.
Example of how make a phone call in Xamarin.Forms applications - http://julianocustodio.com/chamada-telefonica-xamarin-forms
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.DemoPhoneCall">
<uses-sdk android:minSdkVersion="15" />
<application android:label="DemoPhoneCall.Android">
<provider android:name="android.support.v4.content.FileProvider"
android:authorities="com.companyname.DemoPhoneCall.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths"></meta-data>
</provider>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment