Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created May 18, 2018 14:40
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/c16fe43bfec48efce07eefc1b759e9b7 to your computer and use it in GitHub Desktop.
Save juucustodio/c16fe43bfec48efce07eefc1b759e9b7 to your computer and use it in GitHub Desktop.
Example of how to send sms in Xamarin.Forms Applications - http://julianocustodio.com/sms-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.DemoSMS" android:installLocation="auto">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="27" />
<application android:label="DemoSMS.Android">
<provider android:name="android.support.v4.content.FileProvider" android:authorities="com.companyname.DemoSMS.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