ANE ANdroid error

I open an Activity with call FREFunction and after some time I get an error <InputDispatcher(1606): channel '419806a8 air.ru.nekit.JAIR.debug/air.ru.nekit.JAIR.debug.AppEntry (server)' ~ Channel is unrecoverably broken and will be disposed!> or <AndroidRuntime: java.lang.UnsatisfiedLinkError: dispatchStatusEventAsync>
Any commets please)

Hey @mamoun2015 ,
Welcome to the HP Forums!
I understand your tablet is experiencing issues after updating to KitKat.
If you have already attempted the factory reset there is little I can offer you.
It would be best for you to get in touch with our phone support team. Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the following link to get the support number for your region: Phone Assist Worldwide.
Thanks!
Please click the "Kudos, Thumbs Up" at the bottom of this post if you want to say "Thanks" for helping!
Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
The Great Deku Tree
I work on behalf of HP.

Similar Messages

  • Cleaning up ANE Android leftovers?

    After seeing the duplication of resources in assets/META-INF folders, I investigated this further to find that there's a huge amount of unneeded leftover files left here that can *and should* be deleted for a release build.
    For us, this is 11.5MB of a 42.5MB apk, down to 31MB after this clearout.
    Basically, after deleting all files that match the regex,
    assets/META-INF/AIR/extensions/[^/]+/META-INF/ANE/Android-ARM/(?!library.swf)
    Leaves the apk in a perfect state, but a much more manageable / palatable size.  This cleanout can be achieved after the building of the apk with aapt, from android-apktool -  A tool for reverse engineering Android apk files - Google Project Hosting, with commands like,
    aapt remove mygame.apk assets/META-INF/AIR/extensions/com.google.api.game/META-INF/ANE/Android-ARM/android-suppo rt-v4.jar
    aapt remove mygame.apk assets/META-INF/AIR/extensions/com.google.api.game/META-INF/ANE/Android-ARM/appcompat_v7- res/abc_ic_voice_search_api_holo_light.png
    This should *absolutely* be done automatically by the build process, because as I said this contributed to our app growing by a third of it's proper size.

    Seriously Adobe, how can you not at least give this a reply?  Leaving 10MB of unnecessary files on a mobile app is nearly an abominable crime and has to be fixed, and as I've explained (and am operating with now), it's easy-ish for me to fix post-packaging.  For you guys to fix it pre that should be an absolute synch.  Please do something about it.

  • Problem Create ANE,ArgumentError: Error #3500: The extension context does not have a method with the name

    I little confuse about build ANE, I already follow all the direction, but the error always #3500 when I try to call the ANE.
    I create ANE using java android.
    The tools I use : Flash Builder running on Win-64 win.7. I think I must straight to the point, here what i made it first step by step;
    1. I create the JAVA application first, with package senigo.extension.android then I create 3 file, Sample.java, SampleContext.java, PassTextFunction.java
    Sample.Java Source Code
    package senigo.extension.android;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    public class Sample implements FREExtension {
      @Override
      public FREContext createContext(String arg0) {
      // TODO Auto-generated method stub
      Log.i("Sample", "createContext");
      return new SampleContext();
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Dispose");
      @Override
      public void initialize() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Initialize");
    SampleContext.Java Source Code
    package senigo.extension.android;
    import java.util.HashMap;
    import java.util.Map;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREFunction;
    public class SampleContext extends FREContext {
      public SampleContext()
      Log.i("SampleContext", "constructor");
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "dispose");
      @Override
      public Map<String, FREFunction> getFunctions() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "getFunctions");
      Map<String, FREFunction> functionMap = new HashMap<String, FREFunction>();
      functionMap.put("passText", new PassTextFunction());
      return functionMap;
    PassTextFunction.Java Source Code
    package senigo.extension.android;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    import com.adobe.fre.FREFunction;
    import com.adobe.fre.FREObject;
    public class PassTextFunction implements FREFunction {
      @Override
      public FREObject call(FREContext arg0, FREObject[] arg1) {
      // TODO Auto-generated method stub
      FREObject result = null;
      try{
      result =  FREObject.newObject("Hello World");
      }catch(Exception e)
      return result;
    after all the file I create the jar file using click right on the tree view >> Export >> Jar File >> Sample.Jar (i already create jar file that just contain the src folder and after i frustrated, i create .jar file contain all the whole project folder but still didn't work out).
    Ok, After that I create project Flex Library Project, That's contain the actionscript to call the native and the extension.xml, here the code.
    Test.as Source Code, FYI : i already create public function and the static function the error still same #3500.
    package senigo.extension.android
      import flash.external.ExtensionContext;
      public class test
      private static var extContext:ExtensionContext = null;
      public function test()
      trace ("Test Constructor");
      if (!extContext)
      initExtension();
      public static function get passText():String
      trace ("Test Pass Text");
      if (!extContext)
      initExtension();
      return extContext.call("passText") as String;
      private static function initExtension():void
      trace ("Vibration Constructor: Create an extension context");
      extContext = ExtensionContext.createExtensionContext("senigo.extension.android", null);
    extension.xml source code
    FYI: in Flex when i put the Native Extension, they said must have Windows-x86 so I already create 3 ANE, that just contain Android-ARM , Contain Android-ARM and Default, Contain Android-ARM,Default and Windows-x86 but the error still same. I didn't got it where is the error.
    <extension xmlns="http://ns.adobe.com/air/extension/3.1">
      <id>senigo.extension.android</id>
      <versionNumber>1.0.0</versionNumber>
      <platforms>
      <platform name="Android-ARM">
      <applicationDeployment>
      <nativeLibrary>Sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      <!-- <platform name="Windows-x86">
      <applicationDeployment>
      <nativeLibrary>sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      -->
       <platform name="default">
    <applicationDeployment/>
    </platform>
      </platforms>
    </extension>
    After I create it, I copy the .swc file and extension file sample with the Sample.jar file.
    I extract the .swc file, copy the library.swf to folder Android-ARM,Default,Windows-86 and I create build.bat that contain the command like this
    adt -package  -storetype PKCS12 -keystore senigo.p12 -storepass l10nk1ng -target ane senigo.extension.android.ane extension.xml -swc AndroidLib.swc -platform Android-ARM -C ./Android-ARM/ . -platform default -C ./default/ .
    the I put the ane to Flex mobile project that I created:
    I run it but got error #3500, I really confuse?? what's wrong with my code? is there something I wrong or I Miss it?
    Please any one help me.. and when is already ane file can I debug it in Flex Mobile Project? I wanna looks the log.i code that i wrote but i confuse how to looking up in flash builder.
    at the end, I wanna said Sorry if my english not very goods, and thanks, because wanna see my problem and thank you very much if You can gave me a solution's

    Alex Rekish wrote:
    Why you comment Windows-x86 in your extension.xml ?
    I think that is a problem. You launch your application on Windows but ANE haven't got Windows-x86 implementation (also you don't include it while packaging). So your application use default implementation. But default implementation don't use any native code and cannot use ExtensionContext. And you got error.
    If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation.
    Thanks for you answer Alex Rekish, Sorry I didn't screen shoot all about the extension.xml. I comment it because the latest ANE that I build is contain Android-ARM and default. so I commented. but I already try it using just ANE that's just contain Android-ARM, with Android-ARM and windows-x86,and Android-ARM, and default, and Android-ARM,default,Windows-x86 the error still the same.
    here the screen shoot, I embeded the ane that's i contain Windows-x86
    in action script test.as I didn't change it anythings, I just play it on extension.xml to build the ane. is there any mistake over there? I interact with your answer that "If you don't need Windows-x86 native implementation than you need implement default implementation that different than Android-ARM. You don't need to use ExtensionContext in default implementation." I didn't need to user ExtensionContext? is means? in the actionscript? or in extension.xml? can you explained

  • Adobe AIR ANE Android NoClasseDefFoundError

    I am developing an ane for using and enjoying the service games google play.
    I made a test app natively and runs perfectly.
    I generated one ane and made a falsh builder for test. By utilizing it happens the following error:
    07-22 15:55:35.555: E/AndroidRuntime(9983): FATAL EXCEPTION: main
    07-22 15:55:35.555: E/AndroidRuntime(9983): java.lang.NoClassDefFoundError: com.google.example.games.basegameutils.GameHelper
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at com.google.example.games.basegameutils.BaseGameActivity.getGameHelper(BaseGameActivity.ja va:93)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at com.google.example.games.basegameutils.BaseGameActivity.onCreate(BaseGameActivity.java:10 3)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at com.google.example.games.tanc.MainActivity.onCreate(MainActivity.java:70)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at android.app.Activity.performCreate(Activity.java:5248)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1110)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2162)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2257)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at android.app.ActivityThread.access$800(ActivityThread.java:139)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1210)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at android.os.Handler.dispatchMessage(Handler.java:102)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at android.os.Looper.loop(Looper.java:136)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at android.app.ActivityThread.main(ActivityThread.java:5086)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at java.lang.reflect.Method.invokeNative(Native Method)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at java.lang.reflect.Method.invoke(Method.java:515)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:785)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:601)
    07-22 15:55:35.555: E/AndroidRuntime(9983):     at dalvik.system.NativeStart.main(Native Method)
    I looked in the package and the class it appears. I found the following solution, but does not work.
    NoClassDefFoundError for code in an Java library on Android - Stack Overflow
    Go to "Properties" of the project.
    Select "Java Build Path"
    Select "Order and Export" Tab
    You should see the selected project's "src" and "gen" paths and dependencies here.
    The order how they listed were first "src" and then "gen" path
    I switch them, so that "gen" folder is build before the "src"
    Thank you

    Hello, Alex
    I'm just creating an ANE to use the new service from Google Play Service
    My real problem is this:
    I caught the ANE https://github.com/freshplanet/ANE-Google-Play-Game-Services. using google play service in froyo version. And use another ANE AdMob using the latest version of google play service.
    By using and enjoying the two together in my project I have problem as there are conflicting library because I have two different versions of google play service, got the idea to update the ANE https://github.com/freshplanet/ANE-Google-Play- Game-Services. And put the dependencies google service only play one of them.
    ANE that started my whole problem was updating.
    I had this same error in native application (Android) and was simple to solve. I changed the "build path -> Order and Export" order of packets by placing the "gen" in primero and the "src" soon followed. But this change does not fit when I expoprto the jar to generate ANE.
    I ended up finding another that NEDs use google play latest service
    https://github.com/alextel69/google-play-game-services-ane.
    I saw in the documentation that it is using AIR SDK 4.0 and I'm using the AIR 3.6 SDK. I'll update my version and find out if that resolves the problem.
    Which version of AIR SDK are you using?
    Once I have news we report here
    Thanks for your help.
    Have a great day

  • Adobe air install on android error -24

    I got the Asus Memo Pad 302C. I can not instrall the Adobe Air on this machie. It shows the error menssage -24.
    The Memopad is installed the Android 4.2.2
    Can any one help this? Thanks a lot.

    It gives you only three options:
    Signed packages for each target platform.
    Signed AIR package for installation on desktop.
    Intermediate AIRI package that must be signed later.
    For mobile apps, we need to select the first option to get the .apk and .ipa file as the second option would generate .air file. None of the options offer to package AIR runtime. Only the first option gives you the option on NEXT window to include the download link of AIR Runtime.
    If i am wrong, kindly point me to that specific checkbox.
    OR do i have to put Runtime.apk in the assets folder of my source code so that it gets packaged?

  • Air App for Android - error 301: application descriptor missing

    Greetings!
    I've been building in Flash for a while but am brand new to mobile development.  I'm currently trying to create my first Android app, a very basic game called "302 Saves The Galaxy". I don't intend to sell the game.  I'm really just trying to learn my way through the publication process for future projects.
    I've been able to get to the very last step in creating the apk file and I'm getting this error from the command-line process -
    "Error 301: Application descriptor missing/cannot be opened"
    Here's a screen shot of the command line window -
    Here are a few other details about my process -
    In Flash, I selected to publish to Air 2.0 because that's the only option I had (ie, no Air 2.5 option)
    I've triple-checked and all spellings seem to be correct in my command-line syntax
    I'm sure I'm missing something obvoius here.  Any suggestions?
    Thanks in advance!
    Joel

    Hi, Pahup!
    Thank you SO MUCH for that tip!  That solved the problem!  Like I said, I knew it must be something pitifully easy that I was overlooking. 
    Anyway, I really appreciate your taking the time to respond.
    Joel

  • Building Native Mobile App for Android: error message, build fail

    Hi,
    I'm  trying RH10 on a Win 8 x64 system, trying to get the generate for  mobile devices, Android to work. I've installed the Android SDK (part of  the complete ADT) in a "Development" folder in the C drive, installed  JDK for Win 64, added the PhoneGap and ANT unzipped folders to the  "Development" folder and then in the RH10 dialog to generate the Android  APK, I've pointed set the correct paths to these tools. (All installed  tools are correct for my OS, Win 8 x64.)
    No  matter what I try, using a sample file (EmployeeCare, Salesbuilder), I  get an error message at the very end of the build process. Please see the screenshot showing the error message and the relevant part of the  log which looks like the ANT path is not working correctly. The build  fails every time. I've tried to do some troubleshooting online and for  example, came across setting the environment variables for the ANT  folder, which I did, but with no success in fixing the problem. The  Eclipse installation connects with the JDK and runs OK if I simply boot  it up.
    My path settings are in a second screenshot below.
    (I've tried the ANT path with different values, for example "C:\Development\apache-ant-1.9.0-bin" etc. Doesn't prevent error message and build failure.)
    I  am not sure what else to do. Any help would be appreciated. At this  point, I would be happy to simply be able to build one APK then test it  on an Android device.
    Thank you for your help.
    Kind Regards,
    saratogacoach

    @saratogacoach
    Not much on the forums yet about creating an app but I notice you are using Windows 8 which is not officially supported yet. Can you try on a Windows 7 machine to rule out the OS being the problem?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • CS5 Publishing to Android errors: can anyone help?

    Hi I'm a novice android app developer and am trying to publish an apk file to test on my HTC desire phone. I have gone through all of the publish settings and can't see that I've done anything wrong. However, I keep getting the following errors. Has anyone seen this before? If so how do I fix it and publish my .apk file.
    An attribute or element contains an invalid value in the application descriptor file.
    error 105: application.id contains an invalid value
    application.id
    thanks
    Ok maybe this will help a bit. This is the contents of the XML file created when I publish from Flash CS5. I can't see any errors but then again I'm not sure what exactly I'm looking at.
    <?xml version="1.0" encoding="utf-8" standalone="yes"?>
    <application xmlns="http://ns.adobe.com/air/application/2.5">
        <id>le_can_count_2</id>
        <versionNumber>1.0.0</versionNumber>
        <filename>le_can_count_2</filename>
        <description></description>
        <!-- To localize the description, use the following format for the description element.
        <description>
            <text xml:lang="en">English App description goes here</text>
            <text xml:lang="fr">French App description goes here</text>
            <text xml:lang="ja">Japanese App description goes here</text>
        </description>
        -->
        <name>le_can_count_2</name>
        <!-- To localize the name, use the following format for the name element.
        <name>
            <text xml:lang="en">English App name goes here</text>
            <text xml:lang="fr">French App name goes here</text>
            <text xml:lang="ja">Japanese App name goes here</text>
        </name>
        -->
        <copyright></copyright>
        <initialWindow>
            <content>le_can_count_2.swf</content>
            <systemChrome>standard</systemChrome>
            <transparent>false</transparent>
            <visible>true</visible>
            <fullScreen>true</fullScreen>
            <autoOrients>true</autoOrients>
            <aspectRatio>portrait</aspectRatio>
            <renderMode>cpu</renderMode>
        </initialWindow>
        <customUpdateUI>false</customUpdateUI>
        <allowBrowserInvocation>false</allowBrowserInvocation>
        <icon>
            <image36x36>36x36.png</image36x36>
            <image48x48>48x48.png</image48x48>
            <image72x72>72x72.png</image72x72>
        </icon>
        <android>
            <!-- <manifestAdditions><![CDATA[<manifest></manifest>]]></manifestAdditions> -->
        <manifestAdditions><![CDATA[<manifest>
    <uses-permission android:name="android.permission.INTERNET"/></manifest>
    ]]></manifestAdditions></android>
        <versionLabel></versionLabel>
    </application>

    Well, according to the documentation at <manifest> | Android Developers you should be allowed. I have the same problem, but I used to be able to compile. My problem is that I can't update my App now. The previous version compiled with underscores, but this one won't?!

  • ANE packaging error

    I've recently (2 month ago) built Adobe Air extension (ANE) which includes native iOS static library and it worked well.
    Now, I'm getting error which is really strange: (undefined symbols for armv7 xxxInitializer)
    I understand if it were undefined symbols CoreLocation it means I need to update platformoptions.xml to include such option, but seems like it is another issue.
    static lib supports armv7 arch:
    Only one thing I've done - updated Adobe Flash Professional
    I've come across same issue here: http://forum.starling-framework.org/topic/ane-problem but not really helpful.

    I am also receiving an error related to ___divmodsi4 (using different libraries which use that symbol) which appears to be a compiler level math function. It should be packaged automatically but apparently AIR isn't doing it.  No idea what additional library should be linked, attempts to link the 3rd party libraries (and/or packagedDepenency them) failed.
    Undefined symbols for architecture armv7:
      "___divmodsi4", referenced from: (methods in a third party library)
    My Platform.xml is as such:
    <platform xmlns="http://ns.adobe.com/air/extension/3.7">
        <sdkVersion>6.0</sdkVersion>
        <linkerOptions>
        <option>-ObjC</option>   
        <option>-weak_framework Accounts</option>
        <option>-framework AddressBook</option>
        <option>-framework AddressBookUI</option>
        <option>-weak_framework AdSupport</option>
        <option>-framework CoreAudio</option>
        <option>-framework CoreLocation</option>
        <option>-framework CoreMotion</option>
        <option>-framework CoreTelephony</option>
        <option>-framework EventKit</option>
        <option>-framework EventKitUI</option>
        <option>-framework iAd</option>
        <option>-framework MapKit</option>
        <option>-framework MediaPlayer</option>
        <option>-framework MessageUI</option>
        <option>-framework OpenAL</option>
        <option>-weak_framework PassKit</option>
        <option>-framework StoreKit</option>
        <option>-weak_framework Twitter</option>
        <option>-framework UIKit</option>
        <option>-lsqlite3</option>
        <option>-lxml2</option>
        <option>-lz</option>
        </linkerOptions>
    </platform>
    If the author or anyone manages a solution, please post it in this thread!

  • Web App Builder for Android Error

    hi,
    I tried to update my Android Version to v30 but when i want to upload the App to the Google Playstore
    i get the error that my Versioncode has to be greater then 11000000.
    Any Idea for a Solution ?
    sincerley Alex
    Hochladen fehlgeschlagen
    Ihre APK-Datei muss den Paketnamen air.at.xxxx.xxxx haben.
    Der Versionscode Ihrer APK-Datei muss größer als 11000000 sein.

    found my mistake !

  • GoogleMaps - Error in Android - ERROR: The Geolocation Service failed

    Hello.
    First, excuse my bad english.
    I developed an App for iPad and Android with a part of GoogleMaps.
    Therefore I used a HTML-File as Webcontent.
    In the App I defined my own location at first with the preferred W3C Geolocation method.
    At second I used Google Gears.
    Then I have built two Apps with the ViewerBuilder.
    On the iPad the functionality is perfect.
    But on the Android (SAMSUNG Galaxy Tab 10.1, Android 3.2) comes after starting the app: ERROR The Geolocation Service failed.
    But it works on normal Browsers.
    Does anyone have any idea?
    Thanks.

    Hello Syed!
    Did you find a way to solve the problem?
    I run into the same problem, the install fails with the same  failure message.
    Greetz
           Sebastian

  • Android error

    Dear Sir 
    i have hp slate 7 voice tab. it ask for download update to android 4.4 when i accpt and after complete this update  the tab screen have an error i dor fatory restor but still the same error the screen becom hezy and not fixed and its colurs chnage to balck and wihte and some timies return to the orginl state i dont know whathappen
    i hope to help mee soon 
    thanks

    Hey @mamoun2015 ,
    Welcome to the HP Forums!
    I understand your tablet is experiencing issues after updating to KitKat.
    If you have already attempted the factory reset there is little I can offer you.
    It would be best for you to get in touch with our phone support team. Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the following link to get the support number for your region: Phone Assist Worldwide.
    Thanks!
    Please click the "Kudos, Thumbs Up" at the bottom of this post if you want to say "Thanks" for helping!
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    The Great Deku Tree
    I work on behalf of HP.

  • Adding Picasa account: Android error - There was an error creating your account. Please try again.

    I successfully synced with gmail (contacts, mail, etc.), youtube, as well as some other services. I am unable to create the account that accesses Picasa. Each time I try, I enter the email and userid for my account, and I get the same error message "There was an error creating your account. Please try again". I verified that the username and password are correct by signing into Picasa Web directly. A number of other people are experiencing this problem, as can be seen here: http://www.google.com/support/forum/p/Picasa/thread?fid=446b5bd3493325ff0004ad7d643c968c&hl=en
    Does anyone know what to do to make this linkage work? I want to be able to use the integrated gallery to access my Picasa pictures.

    Oracle forums: current quality level...

  • Gyroscope ANE Android

    Hi all, i've integrated the Sample gyroscope ANE from here http://www.adobe.com/devnet/air/native-extensions-for-air/extensions/gyroscope.html inside my app. Basically, this will be a retro race game ( similar to OutRun ) , with the possibilyt to drive left -> right via the gyroscope. It will run ONLY on galaxy TAb 10.1 GT-P7500.
    I have some problem :
    VALUES :
    this is my min Value : -5.326322e-7 for each Axis ( the MAX Value SEEMS to be 5.326322e-7) .
    How to convert  it to a real number ( i need to limit it from 0 to 1 left to right) ? Number.toFixed()  ?
    Is there a way to normalize them in the Java part of the ANE ?
    AXIS :
    when i roatate the device from landscape to portrait, on which axis am i rotating ? When i try to trace it, ALL the axis change value ( and sometime they just get the MIN value of -5.326322e-7, even if the are all rotated ) .
    Thanks in advance!

    isit usefull to do it in the ANE Java ?
    No. Just use Actionscript.
    When im faking a steer with the device (screen i front of me, landscape) on which axis im rotating ?
    use the example on the site you linked to:
    var gyro:Gyroscope; if(Gyroscope.isSupported) { gyro = new Gyroscope(); gyro.setRequestedUpdateInterval(1000); gyro.addEventListener(GyroscopeEvent.UPDATE,onChange); }  
    function onChange(e:GyroscopeEvent):void { trace("From gyro: " + e.x + " " + e.y + " " + " " + e.z); }
    Since I don`t know details how you control your steering its pointless to guess, you must at least show how you plan to steer, control your car.
    And, regardig the snippet, why  2500000 and 2663161 ? ar them -5.326322e-7 converted ?
    The basic idea is to convert a solution room from (roughly -0,53 to roughly 0,53) to 0->1 (-5.326322e-7 is no space magic but simply an exponential way to write down -0.532....)
    This is a linear equation with 2 unknowns which gives when solved the funtion:
    f(x) = 2500000/2663161·x + 1/2
    http://en.wikipedia.org/wiki/Linear_function
    when i roatate the device from landscape to portrait, on which axis am i rotating ? When i try to trace it, ALL the axis change value ( and sometime they just get the MIN value of -5.326322e-7, even if the are all rotated ) .
    use a variable that holds the orintation, and switch the formulas (of which I gave you one) depending on that

  • ANE Android override Activity onNewIntent()

    Hi,
    I'm trying to create an NFC extension to be informed when a Tag is detected by the NFC sensor.
    I guess i have more or less everything i need, expect that onNewIntent override.
    In the JAVA samples i saw, as soon as we call enableForegroundDispatch on the NfcAdapter, the onNewIntent() method of the activity specified on the enableForegroundDispatch is called.
    We have access to the Activity via the FREContext.getActivity() so i can specify the activity that will get the onNewIntent called, but as i can't really extend the FREContext class, i can't override this method to catch the intent.
    Is there any way to achieve this?
    Have a nice day !

    I found this solution that almost satisfies me :
    http://forums.adobe.com/message/4491738?tstart=0#4491738
    It's basically based on the fact that passing a tag in front on the NFC chips fires an InvokeEvent to the AIR's NativeApplication.
    I'm just searching why i get only one of two tag IDs.
    Even if i manually grab the last intent tag ID with the ANE i don't have the new tag but the previous one, until i pass the new tag a second time.
    With a pure Java project overriding the onNewIntent as i wanted to do i have no problem. The onNewIntent() is called everytime a new tag is detected.
    And for now, i have no idea what could be the source of my problem but i still search.
    If anyone has an idea, i'll be glad to read it

Maybe you are looking for

  • How do I remove "other users" folder in mail and on my iPhone

    On one account only I have "other users" folder that lists all of the folders of every user on the server. On my iphone I have to scroll past pages of other user folders to get to any folder named with anything after "O" Does anyone know how to get t

  • While saving the sales document .this error is coming.

    Is there any body to help it out ....... While saving the document this error is coming **Financial document: No financial document assigned**

  • Final cut pro x 10.0.6 crash... I need to coma back urgently to 10.0.5

    Hi, I hope you can solve my problem. i was closing a project that should be ready for monday and I upload FCPX to 10.0.6, which takes so much time to render... How can i come back to 10.0.5.? i re-istalled FCPX 10.0.5, but an alert says that it doesn

  • Payments are not being posted!!!

    I just tried to buy an iphone6 at the Apple store and found out that my Verizon bill is two months past due and about to be turned off!!  I have been on auto pay for years!  I checked my credit card and yup the payments are posted and up to date.  I

  • [SOLVED] dhcpcd exits with no daemon process ... but still works

    This is in the newbie corner as I'm baffled by this and not even well enough informed to know where to gather information. Very recently the behavior of dhcpcd changed.  Previously, it would daemonize and remain in the background: it would show up in