Questions tagged [air-native-extension]

Native extensions for Adobe AIR are a combination of ActionScript classes and native code that provide easy access to device-specific libraries and features that are not available in the built-in ActionScript classes.

A Native Extension allows native code to be packaged along with an Actionscript application practically extending AIR. The code in the extension can utilise native components on the device and provide an Actionscript API to access these components from your application. "Native extensions provide easy access to device-specific libraries and features that are not available in the built-in ActionScript classes."

They are a combination of ActionScript classes and native code in a single ANE file.

The Adobe maintained list: http://www.adobe.com/devnet/air/native-extensions-for-air.html

281 questions
3
votes
2 answers

push notification iOS native extension for Adobe Air

I'm working on iOS native extension for Adobe AIR that will get device token for push notifications. Unfortunately I'm not that munch objective-C programmer and I'm not sure if there's something wrong in the code I'm using. It compiles with no…
michal
  • 31
  • 1
  • 3
3
votes
4 answers

Flex Mobile AIR Native Extension errors

I'm currently working on creating an Android ANE for native alert popups. I'm now at the point where I think my both my Java and AS3 code is good to go but I'm getting an error when I try to use it. Main Thread (Suspended: TypeError: Error #1009:…
francis
  • 5,889
  • 3
  • 27
  • 51
3
votes
0 answers

Invalid Namespace error - Adobe Air Extension Android Build

I have been trying to create a sample demo to create adobe air extension in android. My setup info is, Flash builder 4.7, AIRSDK - 19.0 Flex SDK 4.6 I am using mac OSx Yosamite. Well, I have created the SWC with the AIRSDK 19.0 and created the ANE…
Hardik Chauhan
  • 2,750
  • 15
  • 30
3
votes
1 answer

NoClassdefFoundError on thirdparty class files when building Adobe Native Extension

I am building an Adobe Native extension (ANE) which has third party JAR dependencies. I am making sure that the third party class files are extracted and packaged inside the ANE JAR (as explained in this answer) But when I build the final android…
3
votes
0 answers

read last sms from inbox

Is there a way to read sms from inbox using flash? I'm using flash to create an app. I've created native extension using eclipse and flash builder. The java code i used is: FREObject result = null; Bundle bundle = intent.getExtras(); String msgData…
TheGunners
  • 185
  • 1
  • 13
3
votes
1 answer

How to include additional Jar in Android Native Extension for Adobe Air Mobile

I have build a pretty nice little app using Adobe Air Mobile (FlashBuilder) and Android Native Extensions (ANE). I would like to incorporate the Jayspt encryption library with my ANE but I can't seem to find any documentation telling how to do it.…
FuzzyBear
  • 131
  • 1
  • 7
3
votes
1 answer

Adobe Air 4.0 Native Extension with Google Play Services

These days, I am trying to integrate AdMob into my Adobe Air based android app, with Google Play Service. After I get the ane file ready, I got following error after I debug app in Flash builder 4.6: Error occurred while packaging the…
James
  • 5,119
  • 5
  • 25
  • 27
3
votes
1 answer

Can't call getActivity() from FREContext in a new thread?

I'm writing an AIR Native Extension that has to do some work on a new Android Thread. I have to use a Context to get device information in this Thread. I am calling the getActivity method of FREContext in a new thread, which segfaults. In my…
nicobatu
  • 1,377
  • 3
  • 15
  • 34
3
votes
1 answer

Adobe Air Native Extensions and VideoView - Crash on newer devices when MediaController.show() is called

My application is an Air app that uses the Starling engine and plays streamed videos. As Starling doesn't support Video playback well, I decided to go the native way and written an ANE for video playback. I launch a new Activity with a VideoView to…
zmarkan
  • 605
  • 5
  • 13
3
votes
0 answers

Directing audio output to a Bluetooth speaker in iOS 7 without using MPVolumeView

Is it possible to direct audio output to a Bluetooth speaker in iOS 7 without using the MPVolumeView UI class? (iOS 7 is required for my project.) I need to do this because I am working on a native extension which will allow an Adobe Air…
Buzzwig
  • 460
  • 4
  • 10
3
votes
1 answer

How to get Context from FREContext ?

I'm trying to create and ANE that will handle the autoupdate, (because we're not going to put the application on the android market) This is how it works : autoUpdate = new AutoUpdateApk(getApplicationContext()); But how am I able to get the…
Khalil Bhm
  • 394
  • 3
  • 13
3
votes
2 answers

Building Android Loading Dialog Box with AIR

I am starting to develop android applications using AS3. As much as I've searched I did not find how to make android loading box using AIR! It seems there is no way to do so! Can anybody help me in this regard please?!
samola
  • 33
  • 3
3
votes
3 answers

flex android action script native extension

I designed a native extension for android in flex and i have a problem with this extension. I have packaged the ane file, I have added to the android flex project and it compiles correctly but at runtime I have an error that says that my action…
3
votes
1 answer

ld: library not found for -lgcc_s.1 when creating AIR iOS package with native extension

I'm trying to create an AIR native extension for iOS, but when try create the package to deploy to my device, I'm getting the following error: ld: library not found for -lgcc_s.1 Compilation failed while executing : ld64 Its working when I try to…
Paul
  • 181
  • 1
  • 9
3
votes
1 answer

Has someone made Adobe native extension for integrating with NextPeer's social plugin

I've searched all over for an ANE which is integrating NextPeer's social plugin, but with no results. I was wondering if someone has ever made it and if it's made where I can find it. Here is the plugin for xCode http://developers.nextpeer.com.
1
2
3
18 19