Use ngCordova with the plugin Social Sharing
For this just install ngCordova with Bower and add the plugin
bower install ngCordova
cordova plugin add https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin.git
Add the script to your index.html
<script src="lib/ngCordova/dist/ng-cordova.js"></script>
<script src="cordova.js"></script>
And add dependency to your app.js
angular.module('myApp', ['ionic', 'ngCordova'])
In the controller use the $cordovaSocialSharing service. Documentation of how to use is on the project’s github: https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin
I can use this plugin to share a file I create in Ionic app?
– i9on i9on