All Projects → illuzor → Android Sharing Extension Ane

illuzor / Android Sharing Extension Ane

Android ANE for sharing text and images

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android Sharing Extension Ane

wp-to-diaspora
Automatically share WordPress posts on diaspora*
Stars: ✭ 15 (-37.5%)
Mutual labels:  sharing
Findme
An ARKit App that can help your friends to find you
Stars: ✭ 483 (+1912.5%)
Mutual labels:  sharing
Visualactivityviewcontroller
A way to represent what you’re sharing.
Stars: ✭ 756 (+3050%)
Mutual labels:  sharing
Ideas
🚀 Ideas for everyone under a CC licence. Feel free to use.
Stars: ✭ 290 (+1108.33%)
Mutual labels:  sharing
Commuter
🚎 Notebook sharing hub
Stars: ✭ 353 (+1370.83%)
Mutual labels:  sharing
Angular Socialshare
Angular social share module, share urls and content on social networks such as facebook, google+, twitter, pinterest and more ... - http://720kb.github.io/angular-socialshare
Stars: ✭ 508 (+2016.67%)
Mutual labels:  sharing
verse-blender
Blender Python Add-on with Verse integration
Stars: ✭ 36 (+50%)
Mutual labels:  sharing
Capella Tray
Upload screenshots instantly to Capella and get link directly to clipboard
Stars: ✭ 23 (-4.17%)
Mutual labels:  sharing
Shareon
📯 Lightweight, stylish and ethical share buttons for popular social networks
Stars: ✭ 366 (+1425%)
Mutual labels:  sharing
Socialify
💞 Socialify your project. 🌐 Share with the world!
Stars: ✭ 750 (+3025%)
Mutual labels:  sharing
Mediacms
MediaCMS is a modern, fully featured open source video and media CMS, written in Python/Django and React, featuring a REST API.
Stars: ✭ 313 (+1204.17%)
Mutual labels:  sharing
Bug Project Framework
漏洞利用框架模块分享仓库
Stars: ✭ 343 (+1329.17%)
Mutual labels:  sharing
Carbon
🖤 Create and share beautiful images of your source code
Stars: ✭ 29,304 (+122000%)
Mutual labels:  sharing
Upterm
Secure Terminal Sharing
Stars: ✭ 261 (+987.5%)
Mutual labels:  sharing
Share This
Medium-like text selection sharing without dependencies
Stars: ✭ 787 (+3179.17%)
Mutual labels:  sharing
commonsbooking
CommonsBooking is an open source Wordpress plugin for sharing items with users. This is the NEW CommonsBooking (starting at version v2.0.0). Please install plugin via Wordpress plugin directory.
Stars: ✭ 24 (+0%)
Mutual labels:  sharing
Sparkleshare
Share and collaborate by syncing with any Git repository instantly. Linux, macOS, and Windows.
Stars: ✭ 4,661 (+19320.83%)
Mutual labels:  sharing
Ultimate Metatags
A large snippet for your page's <head> that includes all the meta tags you'll need for OPTIMAL sharing and SEO. Extensive work has been put into ensuring you have the optimal images for the most important social media platforms.
Stars: ✭ 24 (+0%)
Mutual labels:  sharing
Docs
Lightweight document management system packed with all the features you can expect from big expensive solutions
Stars: ✭ 827 (+3345.83%)
Mutual labels:  sharing
Wobike
Documentation of Bike Sharing APIs 🚴🛴🛵
Stars: ✭ 705 (+2837.5%)
Mutual labels:  sharing

Android-Sharing-Extension-ANE

Native Extension for Adobe AIR

Features:

- share text
- share image

Important! Be shure you are using latest version of AIR SDK. This ANE builded for 21

How to use:

Connect com.illuzor.extensions.SharingExtension.ane file to your android air project. Import com.illuzor.sharingextension.SharingExtension;

  1. Share text:
SharingExtension.shareText("Title", "Text for sharing");
  1. Share image:
var bitmap:Bitmap = ...;

// encoding image by native encoder (availible on FP 11.3/AIR 3.3 or newer)
var bitmapBytes:ByteArray = bitmap.bitmapData.encode(new Rectangle(0, 0, bitmap.width, bitmap.height), new JPEGEncoderOptions(70)));

var file:File = File.documentsDirectory.resolvePath("image_for_share.jpg");

var stream:FileStream = new FileStream(); // write file to local memory
stream.open(file, FileMode.WRITE);
stream.writeBytes(fileBytes);
stream.close();

SharingExtension.shareImage(file, "Choser title", "Message"));
  1. Dispose. If you don`t need extension after use, dispose it:
SharingExtension.dispose();

Demo app - http://yadi.sk/d/Se_LR8fm1lgsD

demoAppQR.gif

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].