Free P2P live broadcasting on android platform – Android Broadcaster Beta !!

Presenting the complete P2P combo package for everyone out there for free non commercial usage. Experience next generation broadcasting technology between mobile devices and desktops with ANDROID BROADCASTER and WATCHMYPEER.COM. Contact support[at]flashvisions.com for any business or technical (more…)

last comments
Chris
Chris

I have been looking for something like this to stream my storm chasing adventures to a FMS server. Works good…

NetworkInfo native extension for android – Access connectivity status, availability, detailed network state and more…

With Adobe AIR native extensions, it is extremely easy to read the Network info like , connectivity status, network availability etc on your android device from within your AIR application. This extension intends to fill up the missing gaps in the built in NetworkInfo class provided in AIR SDK  Here is how to get going…

1. Download the free version of our native extension – NetworkInfo – from:

https://flashvisions.com/goodies/air-android-extensions/networkinfo-extension/

 

2.  Create  a instance of  NetworkInfo :

import com.flashvisions.mobile.android.extensions.net.NetworkInfo;

var networkInfo:NetworkInfo = new NetworkInfo();

 

3. Request information through public functions

trace(networkInfo.getCoarseState());
trace(networkInfo.getDetailedState());
trace(networkInfo.isNetworkConnected());
trace(networkInfo.isNetworkAvailable());

 

Return values for getDetailedState() and getCoarseState() are CONSTANT names from thr original Android API, NetworkInfo.DetailedState and NetworkInfo.State respectively.

http://developer.android.com/reference/android/net/NetworkInfo.DetailedState.html
http://developer.android.com/reference/android/net/NetworkInfo.State.html

 

Download Native Extension

How to read battery info on Android with Adobe AIR

With Adobe AIR native extensions, it is extremely easy to read the battery data of your android device from within your AIR application. Here is how to get going… (more…)

last comments
Akbar Goldust
Akbar Goldust

Hi I have used your Native Extension in my app batteryData.rawLevel batteryData.scale batteryData.temperature unit is Celsius ? batteryData.voltage it gives…
Akbar Goldust
Akbar Goldust

and what is rawLevel and access ? Thanks for your great NAE
Sudar
Sudar

Hi, Can i get the dynamic battery value whenever it changes on device for Android AIR application? Regards, Sudar

How to set wallpaper on Android with Adobe AIR

With Adobe AIR native extensions, it is extremely easy to change the wallpaper of your android device from within your AIR application. (more…)