├── .gitignore ├── MIT ├── README.md ├── package.json ├── plugin.xml ├── screenshots ├── screenshot-android-share.png ├── screenshot-ios6-share.png ├── screenshot-ios7-ipad-share.png ├── screenshot-ios7-share.png ├── screenshot-wp8-share.jpg └── screenshots-ios7-shareconfig.png ├── src ├── android │ └── nl │ │ └── xservices │ │ └── plugins │ │ └── SocialSharing.java ├── ios │ ├── NSString+URLEncoding.h │ ├── NSString+URLEncoding.m │ ├── SocialSharing.h │ └── SocialSharing.m ├── windows │ └── SocialSharingProxy.js └── wp8 │ ├── Newtonsoft.Json.dll │ └── SocialSharing.cs ├── tests ├── plugin.xml └── test.js └── www └── SocialSharing.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml -------------------------------------------------------------------------------- /MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/plugin.xml -------------------------------------------------------------------------------- /screenshots/screenshot-android-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/screenshots/screenshot-android-share.png -------------------------------------------------------------------------------- /screenshots/screenshot-ios6-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/screenshots/screenshot-ios6-share.png -------------------------------------------------------------------------------- /screenshots/screenshot-ios7-ipad-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/screenshots/screenshot-ios7-ipad-share.png -------------------------------------------------------------------------------- /screenshots/screenshot-ios7-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/screenshots/screenshot-ios7-share.png -------------------------------------------------------------------------------- /screenshots/screenshot-wp8-share.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/screenshots/screenshot-wp8-share.jpg -------------------------------------------------------------------------------- /screenshots/screenshots-ios7-shareconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/screenshots/screenshots-ios7-shareconfig.png -------------------------------------------------------------------------------- /src/android/nl/xservices/plugins/SocialSharing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/src/android/nl/xservices/plugins/SocialSharing.java -------------------------------------------------------------------------------- /src/ios/NSString+URLEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/src/ios/NSString+URLEncoding.h -------------------------------------------------------------------------------- /src/ios/NSString+URLEncoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/src/ios/NSString+URLEncoding.m -------------------------------------------------------------------------------- /src/ios/SocialSharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/src/ios/SocialSharing.h -------------------------------------------------------------------------------- /src/ios/SocialSharing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/src/ios/SocialSharing.m -------------------------------------------------------------------------------- /src/windows/SocialSharingProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/src/windows/SocialSharingProxy.js -------------------------------------------------------------------------------- /src/wp8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/src/wp8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/wp8/SocialSharing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/src/wp8/SocialSharing.cs -------------------------------------------------------------------------------- /tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/tests/plugin.xml -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/tests/test.js -------------------------------------------------------------------------------- /www/SocialSharing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telerik-Verified-Plugins/SocialSharing/HEAD/www/SocialSharing.js --------------------------------------------------------------------------------