Re: Flex Mobile App hangs when debugging on Android

2018-10-15 Thread Jairo França
Using Flash Builder neither Run(Ctrl+F11) or Debug (F11) works. It asks to deploy AIR version 31 and then stops with the message "Lauching (57%)". The only way to make it run is generate the package and install with adb (or publish on Google Play). Em 14/10/2018 03:21, Yishay Weiss

Publish IOs App

2017-08-02 Thread Jairo
I develop an app and publish on Google Play. Now I´m trying to publish it on IOs but "Application Loader" is giving me the following message: ERROR ITMS-90096: "Your binary is not optimized for iPhone 5 - New iPhone apps." Someone sees something like this? -- View this message in context:

Re: FlashSocket error

2017-07-14 Thread Jairo
I found that it works with socket.io server 1.4.0. When I upgrade do version 2 it stops working. Does anyone knows animplementario of socket.io client that works with version 2? -- View this message in context:

FlashSocket error

2017-07-14 Thread Jairo
I was using FlashSocket for some time and it was doing well. Now I can´t connect to my server and I don´t know why. Te problem rises in module FlashSocket.as. In the following code: if (message == "3probe") { //

Test is another mobile App is installed

2017-07-06 Thread Jairo
I´m developing Flex Mobile Apps and I need to test if another app is instaled on the same device. Let´s say, for example, that I want to know if Waze is installed on the Phone (I need to test both Android and IOs). Thanks for your help. -- View this message in context:

Flex Mobile App + Android Service

2017-05-05 Thread Jairo
I have an Mobile App that needs to be permanently listening for Socket data. I´m thinking what´s the best approach to do this. My idea is to develop the interface in Flex and an Android project that contais a never ending service that will listening to incoming data; then, even if you close the

Re: ANE

2017-05-04 Thread Jairo
The problem with the name was solved. The ANE was generated, I included the reference in the project. Now the problem is in the Flex Library that instantiates the ANE. When I try to instantiate the ExtensionContext, the app shuts down silently, when executing the following code: extContext =

Re: ANE

2017-05-03 Thread Jairo
I´m spending hours on the simple problem.. Thanks to much. It executed without errors. Tomorrow I´ll continue with the tests. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/ANE-tp15163p15167.html Sent from the Apache Flex Users mailing list archive at

ANE

2017-05-03 Thread Jairo
I posted an question about ANE generation and since this I tried hard to generate a simple one, with Android only but can´t get success. I generated the Flex App, the flex lib and the android jar file. No funcionality at all, just the necessary methods to compile an ANE file and access it. When

Re: ANE

2017-04-28 Thread Jairo
Thanks Clint. Yes, I´m running on device. I´ll try do make detailed message based on an simple exemple to show the problem.. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/ANE-tp15137p15140.html Sent from the Apache Flex Users mailing list archive at

ANE

2017-04-28 Thread Jairo
I thought that would be a simple question, but I don´t know how to make a simple ANE for Android work. I read the tutorials, download samples and nothing goes on. Even opening a already done app, like the vibration ANE and its example don´t work for me. I´m using Flash Builder 4.6 with Flex 4.16.

Mobile App Running in Background

2017-04-19 Thread Jairo
I develop a mobile App in Flex and this app needs to be listening to socket data all the time. What i need is to make something like WhatsApp do: you can close the interface but the App is already active, listening to incoming remote data. It is possible to do this? How? Thanks -- View this

Re: Slide to Unlock

2017-03-29 Thread Jairo
I found a simpler solution. I put a ToggleSwitch with a custom skin. The skin looks like: package { import spark.skins.mobile.ToggleSwitchSkin; public class tsUnlockSkinextends ToggleSwitchSkin { public function tsUnlockSkin() {

Re: Slide to Unlock

2017-03-28 Thread Jairo França
Tanks Clint. I wil wait to see if someone has an example. If not, I will start from your suggestion. Em 28/03/2017 15:12, Clint M escreveu: You could probably skin the HSlider control to do what you want. On Tue, Mar 28, 2017 at 10:22 AM, Jairo <ja...@fusoti.com.br> wrote:

Slide to Unlock

2017-03-28 Thread Jairo
I need a "Slide to Unlock" control for my App. Does someone have something like this? -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Slide-to-Unlock-tp14936.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

Callout Modal

2017-02-24 Thread Jairo
I´m using the Callout component. It opens a "baloon" with some data. Is there a way to make this "baloon" modal? If don´t, is there a way do close the baloon when user clicks on the background screen? -- View this message in context:

Re: Socket implementation

2017-02-14 Thread Jairo França
ing = "connectError"; public var data:*; public function FlashSocketEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false) { super(type, bubbles, cancelable); }

Socket implementation

2017-02-14 Thread Jairo
I´m developing a Mobile App with Flex and I need a connection with sockets. I downloaded Flashsocket. It connects and sends data with no problem, but if connection goes out, don´t reconnect. Anyone saw this with Flashsocket or have some better socket implementation? -- View this message in

Catch Errors

2017-01-20 Thread Jairo
In my Apps I catch errors using the following command: systemManager.loaderInfo.uncaughtErrorEvents.addEventListener(UncaughtErrorEvent.UNCAUGHT_ERROR, uncaughtErrorHandler); In the uncaughtErrorHandler function I use Error(event).message and event.text to get the errors but can´t get details

Re: AIR app problem on Google Play

2017-01-17 Thread Jairo
Thanks for you reply. I updated to AIR 24 beta and works. It´s ok. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/AIR-app-problem-on-Google-Play-tp14501p14510.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

AIR app problem on Google Play

2017-01-17 Thread Jairo
I´m trying to publish my app on Google Play but got the error above. "OpenSSL The vulnerabilities were addressed in OpenSSL 1.02f/1.01r. To confirm your OpenSSL version, you can do a grep search for: \$ unzip -p YourApp.apk | strings | grep "OpenSSL" You can find more information and next steps

Re: FlexJS RTMP video support

2017-01-13 Thread Jairo
I did an app that uses RTMP to get video from the camera and send to the server. Later, you could show the video too, but only with Flex, not FlexJS. Works fine. On the server side, I used NGINX with ths RTMP module below. https://github.com/arut/nginx-rtmp-module -- View this message in