diff --git a/.gitignore b/.gitignore index c2aab21..d9f3e67 100644 --- a/.gitignore +++ b/.gitignore @@ -21,11 +21,8 @@ lib/generated_plugin_registrant.dart #pubspec.lock # Android related -**/android/**/gradle-wrapper.jar **/android/.gradle **/android/captures/ -**/android/gradlew -**/android/gradlew.bat **/android/key.properties **/android/local.properties **/android/**/GeneratedPluginRegistrant.java diff --git a/CHANGELOG.md b/CHANGELOG.md index 06c4920..0b076f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.2.0 +- support telegram + # 1.1.4 - fix #54 android share whatsapp failed(only text) diff --git a/README.md b/README.md index 6b4501d..ccd1884 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Flutter Plugin for sharing contents to social media. -You can use it share to Facebook , Instagram , WhatsApp(WhatsAppBusiness) , Twitter And System Share UI. +You can use it share to Facebook , Instagram , WhatsApp(WhatsAppBusiness) , Twitter, telegram And System Share UI. Support Url and Text. support: @@ -79,8 +79,7 @@ make sure you add below deatils in your plist file. ``` Note-: Make sure you add fb in at start of your fb Id in CFBundleURLSchemes. -Add below value in url scheme. - +Add below value in url scheme(Refer to example). ```LSApplicationQueriesSchemes @@ -101,6 +100,7 @@ Add below value in url scheme. fb-messenger-share-api fbauth2 fbshareextension + tg ``` @@ -147,6 +147,9 @@ import 'package:flutter_share_me/flutter_share_me.dart'; ### instagram #### shareToInstagram({String imagePath}) +### telegram +#### shareToTelegram({String msg}) + ### system #### shareToSystem({String msg}) use system share ui diff --git a/pubspec.yaml b/pubspec.yaml index d5912eb..0ba9ce5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_share_me description: Flutter Plugin for sharing contents to social media.You can use it share to Facebook , WhatsApp , Twitter And System Share UI. Support Url and Text. -version: 1.1.4 +version: 1.2.0 homepage: https://github.com/OpenFlutter/flutter_share_me publish_to: http://pub.dev