Run in Android emulator for PC?

Hi,
Is it possible to run Proto in an Android emulator?  I have a Samsung Series 7 Slate tablet (Windows 7).
Alternatively, are there plans to offer a version of Proto (and the other Adobe Touch apps, for that matter) for Windows tablets?
Thanks,
Chris

Thanks, Dave. 
I agree; most emulators I've seen are more geared to development.  More recently, however, I've been using an app/portal called BlueStacks (no affiliation, just found the app online) to get some of my more favorite Android apps to run on my Windows tablet as an end-user.  BlueStacks requires you to sync the app through your phone or Android tablet.  Unfortunately I don't have an Android device that runs Android >= 3.1, so I can't try the Adobe Touch apps through that service since I can't install them on my Android phone.
As you pointed out, my Windows tablet will of course run the full Adobe CS 5.5 products.  (I briefly installed Master Collection CS 5.5 to see how it ran, and it was pretty good.)  However, the touch-friendliness of the full apps' UI controls isn't really there yet, so I thought the Adobe Touch apps might be better suited to that form factor.
I suppose the ideal in my case would be a touch-friendly user interface skin for the full Adobe CS 5.5 suite.  And, of course, a change to the license that would allow it to be installed on desktop, laptop and tablet for non-simultaneous use, rather than just two of the three systems (I currently use Master Collection CS 5.5 on both laptop and desktop - the tablet is a new addition).
Where is the official place to make feature requests for future consideration?
Thanks again,
Chris

Similar Messages

  • Visual Studio's Emulator for Android is not working or either showing in Hyper-V

    I installed the VS 2015 CTP with Cordova tools and Have already installed the Xamarin .... But the Android emulator is not showing in the Hyper-v or dosn't start up. But i just check the Programmes i have installed its there in the list. I have enabled the
    Hyper-v and other specs are also available ... VS als dosnt shows the Emulator is there .... Please help me to up the Android Emulator for Visual Studio ...
    -------------------------------------------------- Hyper - V -----------------------------------------------
    ------------------------------------------------------------------- Control Panel -------------------------------------------------------------
    Dileepa S. Rajapaksa
    Trainee Developer
    Microsoft, Sri Lanka
    Twitter : @dsrajapaksa
    Blog : http://www.dileepatech.net

    The Microsoft Visual Studio emulator for Android can be identified by "VS Emulator Kitkat..." and "VS Emulator Lollipop ...". You should see the virtual machine in the Hyper-V manager once it's created.
    Here's a
    MSDN article that talks about the Visual studio Emulator for Android.
    Abdulwahab Suleiman

  • Flex mobile 4.6 app works inside flash builder but not in android emulator

    Originally posted on stackoverflow: http://stackoverflow.com/questions/8663892/flex-mobile-4-6-app-works-inside-flash-builder- but-not-in-android-emulator
    I have a basic flex mobile 4.6 app and it works fully fine in the flash builder built-in emulator using an android device profile like aria...
    It also launches fine in the android emulator but one particular view shows blank (and this view works fine in flash builder).
    Before I get in to many details of the view are there any categorical gotchas that can be causing this?
    I can't seem to get the trace statements from the app to show in 'adb logcat'. It seems I need to compile a debug version of the apk but I don't know how to do this. I use the 'Export Release Build' from the Project menu in flash builder and it doesn't seem to have an option for debug=true.
    The problematic/blank view basically uses the stagewebview and iotashan's oauth library to call linkedin rest apis... A different (and working) view can make restful web service calls in the emulator fine, so it doesn't seem to be an internet permission.
    The source code contained in the problematic/blank view is almost identical to the tutorial found at:http://www.riagora.com/2011/01/air-and-linkedin/
    The differences are: a) The root tag is a View b) I use StageWebView instead of HtmlContainer c) I use my own linkedin key and tokens.
    I would appreciate it if someone can provide me with some pointers on how to troubleshoot this situation. Perhaps someone can tell me how to debug the app while running in the emulator (I think I need the correct adt command arguments for this which matches the 'Export Release Build' menu but adds the debug param?)
    Thanks for your help in advance.
    Comment Added:
    I suspect that this has to do with connections to https:// api.linkedin.com and https:// www.linkedin.com. The only reason I can think of that the same code is not having issues inside of Flex Builder but indeed having issues in the Android emulator is something to do with certificates. Any ideas?

    Thanks er453r,
    I have created a project that clearly reproduces the bug.  Here are the steps:
    1) Create a UrlLoader and point it to https://www.google.com (HTTPS is important because http works but HTTPS does not)
    2) Load it
    3) Run in Flash Builder 4.6/Air 3.1 and then run in Android emulator.  The former works with an http status 200.  The latter gives you an ioerror 2032.  I am assuming what works in Flash Builder is supposed to work in the Android Emulator and what what works in the emulator is supposed to work in a physical device (plus or minus boundary conditions).
    I see a certificate exception in adb logcat but not sure if it's related...
    Here is the self contained View code which works with a TabbedViewNavigatorApplication:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        xmlns:ns1="*"
                        xmlns:local="*"
                        creationComplete="windowedapplication1_creationCompleteHandler(event) "
                        actionBarVisible="true" tabBarVisible="true">
              <fx:Script>
                        <![CDATA[
                                  import mx.events.FlexEvent;
                                  protected var requestTokenUrl:String = "https://www.google.com";
                                  protected function windowedapplication1_creationCompleteHandler(event:FlexEvent):void
                                            var loader:URLLoader = new URLLoader();
                                            loader.addEventListener(ErrorEvent.ERROR, onError);
                                            loader.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onAsyncError);
                                            loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
                                            loader.addEventListener(HTTPStatusEvent.HTTP_RESPONSE_STATUS, httpResponseStatusHandler);
                                            loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
                                            var urlRequest:URLRequest = new URLRequest(requestTokenUrl);
                                            loader.load(urlRequest);
                                  protected function requestTokenHandler(event:Event):void
                                  protected function httpResponse(event:HTTPStatusEvent):void
                                            label.text += event.status;
                                            // TODO Auto-generated method stub
                                  private function completeHandler(event:Event):void {
                                            label.text += event.toString();
                                            trace("completeHandler data: " + event.currentTarget.data);
                                  private function openHandler(event:Event):void {
                                            label.text +=  event.toString();
                                            trace("openHandler: " + event);
                                  private function onError(event:ErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("onError: " + event.type);
                                  private function onAsyncError(event:AsyncErrorEvent):void {
                                            label.text += event.toString();
                                            trace("onAsyncError: " + event);
                                  private function onNetStatus(event:NetStatusEvent):void {
                                            label.text += event.toString();
                                            trace("onNetStatus: " + event);
                                  private function progressHandler(event:ProgressEvent):void {
                                            label.text += event.toString();
                                            trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);
                                  private function securityErrorHandler(event:SecurityErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("securityErrorHandler: " + event);
                                  private function httpStatusHandler(event:HTTPStatusEvent):void {
                                            label.text += event.toString();
                                            //label.text += event.responseHeaders.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function httpResponseStatusHandler(event:HTTPStatusEvent):void {
                                            label.text +=  event.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function ioErrorHandler(event:IOErrorEvent):void {
                                            label.text +=  event.toString();
                                            label.text += event.text;
                                            trace("ioErrorHandler: " + event);
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Label id="label" y="185" width="100%" color="#0A0909" horizontalCenter="0" text=""/>
    </s:View>

  • AIR Native Extension Application Crash on Android Emulator when Extension method is invoked

    I have developed a Hello World Application using AIR Native Extension on Android Emulator and When i try to run the application its crashes. I was able to run same application sometimes back on Android Emulator on Mac. Right now I am using a Windows machine (as i dont have Mac anymore). I tried running same apk file which was compiled and running on Android emulator on Mac but it failed. Also i tried to recompile entire application from same code base but still it is failing. As far as i know Mac or windows should not play a part but still mentioning it out in the discussion. Also i tried running the application on various Android SDK version but with same results.
    Following is logcat logs for Android 4.0.3.
    D/gralloc_goldfish(  497): Emulator without GPU emulation detected.
    I/ActivityManager(   84): Displayed air.com.deloitte.helloWorld/.AppEntry: +4s82
    6ms
    W/InputManagerService(   84): Starting input on non-focused client com.android.i
    nternal.view.IInputMethodClient$Stub$Proxy@413e17e0 (uid=10009 pid=179)
    W/ActivityManager(   84): Launch timeout has expired, giving up wake lock!
    W/ActivityManager(   84): Activity idle timeout for ActivityRecord{41534258 air.
    com.deloitte.helloWorld/.AppEntry}
    W/NetworkManagementSocketTagger(   84): setKernelCountSet(10009, 0) failed with
    errno -2
    E/dalvikvm(  497): JNI ERROR (app bug): attempt to use stale local reference 0x5
    d500031
    W/dalvikvm(  497): JNI WARNING: 0x5d500031 is not a valid JNI reference
    W/dalvikvm(  497):              in Lcom/adobe/air/customHandler;.nativeOnTouchCa
    llback:(IFFFIFFZ[FI)Z (CallObjectMethodV)
    I/dalvikvm(  497): "main" prio=5 tid=1 RUNNABLE
    I/dalvikvm(  497):   | group="main" sCount=0 dsCount=0 obj=0x409c1460 self=0x128
    10
    I/dalvikvm(  497):   | sysTid=497 nice=0 sched=0/0 cgrp=default handle=107408295
    2
    I/dalvikvm(  497):   | schedstat=( 12139801627 5119955457 1265 ) utm=1128 stm=85
    core=0
    I/dalvikvm(  497):   at com.adobe.air.customHandler.nativeOnTouchCallback(Native
    Method)
    I/dalvikvm(  497):   at com.adobe.air.customHandler.nativeOnTouchCallback(Native
    Method)
    I/dalvikvm(  497):   at com.adobe.air.customHandler.handleMessage(customHandler.
    java:23)
    I/dalvikvm(  497):   at android.os.Handler.dispatchMessage(Handler.java:99)
    I/dalvikvm(  497):   at android.os.Looper.loop(Looper.java:137)
    I/dalvikvm(  497):   at android.app.ActivityThread.main(ActivityThread.java:4424
    I/dalvikvm(  497):   at java.lang.reflect.Method.invokeNative(Native Method)
    I/dalvikvm(  497):   at java.lang.reflect.Method.invoke(Method.java:511)
    I/dalvikvm(  497):   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.r
    un(ZygoteInit.java:784)
    I/dalvikvm(  497):   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:
    551)
    I/dalvikvm(  497):   at dalvik.system.NativeStart.main(Native Method)
    I/dalvikvm(  497):
    E/dalvikvm(  497): VM aborting
    F/libc    (  497): Fatal signal 11 (SIGSEGV) at 0xdeadd00d (code=1)
    I/DEBUG   (   34): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *
    I/DEBUG   (   34): Build fingerprint: 'generic/sdk/generic:4.0.3/MR1/237985:eng/
    test-keys'
    I/DEBUG   (   34): pid: 497, tid: 497  >>> air.com.deloitte.helloWorld <<<
    I/DEBUG   (   34): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadd00
    d
    I/DEBUG   (   34):  r0 00000000  r1 00097bd8  r2 00000000  r3 00000000
    I/DEBUG   (   34):  r4 deadd00d  r5 40872c58  r6 0000020c  r7 49622e39
    I/DEBUG   (   34):  r8 4084ee67  r9 4084e703  10 4084ee73  fp 4084f546
    I/DEBUG   (   34):  ip 00000000  sp bed6a248  lr 4080bc8f  pc 4080bc8e  cpsr 600
    00030
    I/DEBUG   (   34):  d0  3f8000003f800000  d1  4b00106845834000
    I/DEBUG   (   34):  d2  4b0010684b000000  d3  0000000045834000
    I/DEBUG   (   34):  d4  0000000000000000  d5  0000000000000000
    I/DEBUG   (   34):  d6  0000000000000000  d7  0000106800000000
    I/DEBUG   (   34):  d8  3f8000003f800000  d9  0000000000100000
    I/DEBUG   (   34):  d10 0000000000000000  d11 0000000000000000
    I/DEBUG   (   34):  d12 0000000000000000  d13 0000000000000000
    I/DEBUG   (   34):  d14 0000000000000000  d15 0000000000000000
    I/DEBUG   (   34):  scr 68000012
    I/DEBUG   (   34):
    I/DEBUG   (   34):          #00  pc 00050c8e  /system/lib/libdvm.so (dvmAbort)
    I/DEBUG   (   34):          #01  pc 0004486e  /system/lib/libdvm.so
    I/DEBUG   (   34):          #02  pc 000451b0  /system/lib/libdvm.so
    I/DEBUG   (   34):          #03  pc 0004c9a0  /system/lib/libdvm.so
    I/DEBUG   (   34):          #04  pc 000e0e4a  /data/data/com.adobe.air/lib/libCo
    re.so
    I/DEBUG   (   34):
    I/DEBUG   (   34): code around pc:
    I/DEBUG   (   34): 4080bc6c 34b4f8d3 ec54f7cd 26001e73 2f01f813  ...4..T.s..&...
    I/DEBUG   (   34): 4080bc7c 42abb152 d0074416 4798e7f8 f7ff4c0a  R..B.D.....G.L.
    I/DEBUG   (   34): 4080bc8c 7026ffa7 ec4af7cd 2006490c 44794a0c  ..&p..J..I. .Jy
    D
    I/DEBUG   (   34): 4080bc9c f7cd447a 2000eb00 ebc2f7cd 58e54b05  zD..... .....K.
    X
    I/DEBUG   (   34): 4080bcac 2b006c6b e7e9d1e9 deadd00d 0006234c  kl.+........L#.
    I/DEBUG   (   34):
    I/DEBUG   (   34): code around lr:
    I/DEBUG   (   34): 4080bc6c 34b4f8d3 ec54f7cd 26001e73 2f01f813  ...4..T.s..&...
    I/DEBUG   (   34): 4080bc7c 42abb152 d0074416 4798e7f8 f7ff4c0a  R..B.D.....G.L.
    I/DEBUG   (   34): 4080bc8c 7026ffa7 ec4af7cd 2006490c 44794a0c  ..&p..J..I. .Jy
    D
    I/DEBUG   (   34): 4080bc9c f7cd447a 2000eb00 ebc2f7cd 58e54b05  zD..... .....K.
    X
    I/DEBUG   (   34): 4080bcac 2b006c6b e7e9d1e9 deadd00d 0006234c  kl.+........L#.
    I/DEBUG   (   34):
    I/DEBUG   (   34): memory map around addr deadd00d:
    I/DEBUG   (   34): bed23000-bed71000 [stack]
    I/DEBUG   (   34): (no map for address)
    I/DEBUG   (   34): (no map above)
    I/DEBUG   (   34):
    I/DEBUG   (   34): stack:
    I/DEBUG   (   34):     bed6a208  00000000
    I/DEBUG   (   34):     bed6a20c  4001df19  /system/lib/libc.so
    I/DEBUG   (   34):     bed6a210  4004770c  /system/lib/libc.so
    I/DEBUG   (   34):     bed6a214  4004c85c
    I/DEBUG   (   34):     bed6a218  00000000
    I/DEBUG   (   34):     bed6a21c  4001f121  /system/lib/libc.so
    I/DEBUG   (   34):     bed6a220  4004755c  /system/lib/libc.so
    I/DEBUG   (   34):     bed6a224  00000000
    I/DEBUG   (   34):     bed6a228  0000020c
    I/DEBUG   (   34):     bed6a22c  49622e39  /data/data/com.adobe.air/lib/libCore.
    so
    I/DEBUG   (   34):     bed6a230  4084ee67  /system/lib/libdvm.so
    I/DEBUG   (   34):     bed6a234  4001df37  /system/lib/libc.so
    I/DEBUG   (   34):     bed6a238  4086df90  /system/lib/libdvm.so
    I/DEBUG   (   34):     bed6a23c  bed6a44b  [stack]
    I/DEBUG   (   34):     bed6a240  df0027ad
    I/DEBUG   (   34):     bed6a244  00000000
    I/DEBUG   (   34): #00 bed6a248  00000038
    I/DEBUG   (   34):     bed6a24c  6c756e28
    I/DEBUG   (   34):     bed6a250  0000296c
    I/DEBUG   (   34):     bed6a254  00000000
    I/DEBUG   (   34):     bed6a258  00000000
    I/DEBUG   (   34):     bed6a25c  00000000
    I/DEBUG   (   34):     bed6a260  00000000
    I/DEBUG   (   34):     bed6a264  00000000
    I/DEBUG   (   34):     bed6a268  00000000
    I/DEBUG   (   34):     bed6a26c  00000000
    I/DEBUG   (   34):     bed6a270  00000000
    I/DEBUG   (   34):     bed6a274  00000000
    I/DEBUG   (   34):     bed6a278  00000000
    I/DEBUG   (   34):     bed6a27c  00000000
    I/DEBUG   (   34):     bed6a280  00000000
    I/DEBUG   (   34):     bed6a284  00000000
    I/DEBUG   (   34):     bed6a288  00000000
    I/DEBUG   (   34):     bed6a28c  00000000
    I/DEBUG   (   34):     bed6a290  00000000
    I/DEBUG   (   34):     bed6a294  00000000
    I/DEBUG   (   34):     bed6a298  00000000
    I/DEBUG   (   34):     bed6a29c  00000000
    I/DEBUG   (   34):     bed6a2a0  00000000
    I/DEBUG   (   34):     bed6a2a4  00000000
    I/DEBUG   (   34):     bed6a2a8  00000000
    I/DEBUG   (   34):     bed6a2ac  00000000
    I/DEBUG   (   34):     bed6a2b0  00000000
    I/DEBUG   (   34):     bed6a2b4  00000000
    I/DEBUG   (   34):     bed6a2b8  00000000
    I/DEBUG   (   34):     bed6a2bc  00000000
    I/DEBUG   (   34):     bed6a2c0  00000000
    I/DEBUG   (   34):     bed6a2c4  00000000
    I/DEBUG   (   34):     bed6a2c8  00000000
    I/DEBUG   (   34):     bed6a2cc  00000000
    I/DEBUG   (   34):     bed6a2d0  00000000
    I/DEBUG   (   34):     bed6a2d4  00000000
    I/DEBUG   (   34):     bed6a2d8  00000000
    I/DEBUG   (   34):     bed6a2dc  00000000
    I/DEBUG   (   34):     bed6a2e0  00000000
    I/DEBUG   (   34):     bed6a2e4  00000000
    I/DEBUG   (   34):     bed6a2e8  00000000
    I/DEBUG   (   34):     bed6a2ec  00000000
    I/DEBUG   (   34):     bed6a2f0  00000000
    I/DEBUG   (   34):     bed6a2f4  00000000
    I/DEBUG   (   34):     bed6a2f8  00000000
    I/DEBUG   (   34):     bed6a2fc  00000000
    I/DEBUG   (   34):     bed6a300  00000000
    I/DEBUG   (   34):     bed6a304  00000000
    I/DEBUG   (   34):     bed6a308  00000000
    I/DEBUG   (   34):     bed6a30c  00000000
    I/DEBUG   (   34):     bed6a310  00000000
    I/DEBUG   (   34):     bed6a314  00000000
    I/DEBUG   (   34):     bed6a318  00000000
    I/DEBUG   (   34):     bed6a31c  00000000
    I/DEBUG   (   34):     bed6a320  00000000
    I/DEBUG   (   34):     bed6a324  00000000
    I/DEBUG   (   34):     bed6a328  00000000
    I/DEBUG   (   34):     bed6a32c  00000000
    I/DEBUG   (   34):     bed6a330  00000000
    I/DEBUG   (   34):     bed6a334  00000000
    I/DEBUG   (   34):     bed6a338  00000000
    I/DEBUG   (   34):     bed6a33c  00000000
    I/DEBUG   (   34):     bed6a340  00000000
    I/DEBUG   (   34):     bed6a344  00000000
    I/DEBUG   (   34):     bed6a348  00000000
    I/DEBUG   (   34):     bed6a34c  00000000
    I/DEBUG   (   34):     bed6a350  00000000
    I/DEBUG   (   34):     bed6a354  00000000
    I/DEBUG   (   34):     bed6a358  00000000
    I/DEBUG   (   34):     bed6a35c  00000000
    I/DEBUG   (   34):     bed6a360  00000000
    I/DEBUG   (   34):     bed6a364  00000000
    I/DEBUG   (   34):     bed6a368  00000000
    I/DEBUG   (   34):     bed6a36c  00000000
    I/DEBUG   (   34):     bed6a370  00000000
    I/DEBUG   (   34):     bed6a374  00000000
    I/DEBUG   (   34):     bed6a378  00000000
    I/DEBUG   (   34):     bed6a37c  00000000
    I/DEBUG   (   34):     bed6a380  00000000
    I/DEBUG   (   34):     bed6a384  00000000
    I/DEBUG   (   34):     bed6a388  00000000
    I/DEBUG   (   34):     bed6a38c  00000000
    I/DEBUG   (   34):     bed6a390  00000000
    I/DEBUG   (   34):     bed6a394  00000000
    I/DEBUG   (   34):     bed6a398  00000000
    I/DEBUG   (   34):     bed6a39c  00000000
    I/DEBUG   (   34):     bed6a3a0  00000000
    I/DEBUG   (   34):     bed6a3a4  00000000
    I/DEBUG   (   34):     bed6a3a8  00000000
    I/DEBUG   (   34):     bed6a3ac  00000000
    I/DEBUG   (   34):     bed6a3b0  00000000
    I/DEBUG   (   34):     bed6a3b4  00000000
    I/DEBUG   (   34):     bed6a3b8  00000000
    I/DEBUG   (   34):     bed6a3bc  00000000
    I/DEBUG   (   34):     bed6a3c0  00000000
    I/DEBUG   (   34):     bed6a3c4  00000000
    I/DEBUG   (   34):     bed6a3c8  00000000
    I/DEBUG   (   34):     bed6a3cc  00000000
    I/DEBUG   (   34):     bed6a3d0  00000000
    I/DEBUG   (   34):     bed6a3d4  00000000
    I/DEBUG   (   34):     bed6a3d8  00000000
    I/DEBUG   (   34):     bed6a3dc  00000000
    I/DEBUG   (   34):     bed6a3e0  00000000
    I/DEBUG   (   34):     bed6a3e4  00000000
    I/DEBUG   (   34):     bed6a3e8  00000000
    I/DEBUG   (   34):     bed6a3ec  00000000
    I/DEBUG   (   34):     bed6a3f0  00000000
    I/DEBUG   (   34):     bed6a3f4  00000000
    I/DEBUG   (   34):     bed6a3f8  00000000
    I/DEBUG   (   34):     bed6a3fc  00000000
    I/DEBUG   (   34):     bed6a400  00000000
    I/DEBUG   (   34):     bed6a404  00000000
    I/DEBUG   (   34):     bed6a408  00000000
    I/DEBUG   (   34):     bed6a40c  00000000
    I/DEBUG   (   34):     bed6a410  00000000
    I/DEBUG   (   34):     bed6a414  00000000
    I/DEBUG   (   34):     bed6a418  00000000
    I/DEBUG   (   34):     bed6a41c  00000000
    I/DEBUG   (   34):     bed6a420  00000000
    I/DEBUG   (   34):     bed6a424  00000000
    I/DEBUG   (   34):     bed6a428  00000000
    I/DEBUG   (   34):     bed6a42c  00000000
    I/DEBUG   (   34):     bed6a430  00000000
    I/DEBUG   (   34):     bed6a434  00000000
    I/DEBUG   (   34):     bed6a438  00000000
    I/DEBUG   (   34):     bed6a43c  00000000
    I/DEBUG   (   34):     bed6a440  00000000
    I/DEBUG   (   34):     bed6a444  00000000
    I/DEBUG   (   34):     bed6a448  00000000
    I/DEBUG   (   34):     bed6a44c  342b19f5
    I/DEBUG   (   34):     bed6a450  00000000
    I/DEBUG   (   34):     bed6a454  4086df90  /system/lib/libdvm.so
    I/DEBUG   (   34):     bed6a458  5d500031
    I/DEBUG   (   34):     bed6a45c  407ff873  /system/lib/libdvm.so
    I/DEBUG   (   34): #01 bed6a460  bed6a54c  [stack]
    I/DEBUG   (   34):     bed6a464  408001b5  /system/lib/libdvm.so
    D/Zygote  (   37): Process 497 terminated by signal (11)
    I/WindowManager(   84): WIN DEATH: Window{41462cb0 SurfaceView paused=false}
    I/ActivityManager(   84): Process air.com.deloitte.helloWorld (pid 497) has died
    W/ActivityManager(   84): Force removing ActivityRecord{41534258 air.com.deloitt
    e.helloWorld/.AppEntry}: app died, no saved state
    W/NetworkManagementSocketTagger(   84): setKernelCountSet(10041, 0) failed with
    errno -2
    I/WindowManager(   84): WIN DEATH: Window{41590db8 SurfaceView paused=false}
    I/WindowManager(   84): WIN DEATH: Window{4158b920 air.com.deloitte.helloWorld/a
    ir.com.deloitte.helloWorld.AppEntry paused=false}
    I/BootReceiver(   84): Copying /data/tombstones/tombstone_06 to DropBox (SYSTEM_
    TOMBSTONE)
    E/InputDispatcher(   84): Received spurious receive callback for unknown input c
    hannel.  fd=209, events=0x8
    D/dalvikvm(   84): GC_FOR_ALLOC freed 928K, 13% free 11284K/12871K, paused 84ms
    W/NetworkManagementSocketTagger(   84): setKernelCountSet(10009, 1) failed with
    errno -2
    D/dalvikvm(   84): GC_CONCURRENT freed 141K, 10% free 11601K/12871K, paused 6ms+
    14ms
    D/dalvikvm(   84): GC_FOR_ALLOC freed 177K, 11% free 11552K/12871K, paused 128ms
    D/dalvikvm(   84): GC_FOR_ALLOC freed 128K, 10% free 11616K/12871K, paused 84ms
    D/dalvikvm(   84): GC_FOR_ALLOC freed 427K, 12% free 11445K/12871K, paused 79ms
    W/InputManagerService(   84): Got RemoteException sending setActive(false) notif
    ication to pid 497 uid 10041
    D/dalvikvm(  136): GC_FOR_ALLOC freed 5544K, 37% free 9812K/15495K, paused 47ms
    D/dalvikvm(  179): GC_FOR_ALLOC freed 2416K, 21% free 17911K/22535K, paused 77ms
    D/dalvikvm(  179): GC_FOR_ALLOC freed 659K, 17% free 18828K/22535K, paused 100ms
    D/dalvikvm(  179): GC_CONCURRENT freed 941K, 12% free 19900K/22535K, paused 6ms+
    20ms
    D/dalvikvm(  179): GC_CONCURRENT freed 3259K, 18% free 18684K/22535K, paused 12m
    s+23ms

    I am not able to solve this yet. Is anybody else facing this this problem.

  • Run APK generated by DPS on the Android Emulator

    Hello,
    I am trying to run the Android App reader generate by Adobe Viewer Builder on the Android Emulator, but the app is crashing.
    I am able to install Adobe AIR and the Apk generated, they install with any problems, but when I try to run the app, I get the error below:
    I/ActivityManager(   61): Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=air.br.com.abril.ibadpsreader/.AppEntry } from pid 135
    I/ActivityManager(   61): Start proc air.br.com.abril.ibadpsreader for activity air.br.com.abril.ibadpsreader/.AppEntry: pid=294 uid=10035 gids={1015, 3003}
    I/ARMAssembler(   61): generated scanline__00000177:03515104_00001002_00000000 [ 87 ipp] (110 ins) at [0x445ed6f0:0x445ed8a8] in 526604 ns
    I/StartupTime1(  294): :1331752180760
    D/Environment(  294): init
    D/dalvikvm(  294): Trying to load lib /data/data/com.adobe.air/lib/libCore.so 0x405231c0
    D/dalvikvm(  294): Added shared lib /data/data/com.adobe.air/lib/libCore.so 0x405231c0
    I/dalvikvm(  294): Failed resolving Lcom/adobe/air/AIRWindowSurfaceView$4; interface 159 'Landroid/view/View$OnSystemUiVisibilityChangeListener;'
    W/dalvikvm(  294): Link of class 'Lcom/adobe/air/AIRWindowSurfaceView$4;' failed
    E/dalvikvm(  294): Could not find class 'com.adobe.air.AIRWindowSurfaceView$4', referenced from method com.adobe.air.AIRWindowSurfaceView.DoSetOnSystemUiVisibilityChangeListener
    W/dalvikvm(  294): VFY: unable to resolve new-instance 221 (Lcom/adobe/air/AIRWindowSurfaceView$4;) in Lcom/adobe/air/AIRWindowSurfaceView;
    D/dalvikvm(  294): VFY: replacing opcode 0x22 at 0x0000
    D/dalvikvm(  294): VFY: dead code 0x0002-0008 in Lcom/adobe/air/AIRWindowSurfaceView;.DoSetOnSystemUiVisibilityChangeListener ()V
    I/dalvikvm(  294): Could not find method android.view.View.setSystemUiVisibility, referenced from method com.adobe.air.AIRWindowSurfaceView.clearFullScreen
    W/dalvikvm(  294): VFY: unable to resolve virtual method 440: Landroid/view/View;.setSystemUiVisibility (I)V
    D/dalvikvm(  294): VFY: replacing opcode 0x6e at 0x001a
    I/dalvikvm(  294): Could not find method android.view.View.setSystemUiVisibility, referenced from method com.adobe.air.AIRWindowSurfaceView.setFullScreen
    W/dalvikvm(  294): VFY: unable to resolve virtual method 440: Landroid/view/View;.setSystemUiVisibility (I)V
    D/dalvikvm(  294): VFY: replacing opcode 0x6e at 0x001c
    I/dalvikvm(  294): Could not find method android.view.ScaleGestureDetector.getCurrentSpanX, referenced from method com.adobe.air.gestures.AIRGestureListener.onScale
    W/dalvikvm(  294): VFY: unable to resolve virtual method 411: Landroid/view/ScaleGestureDetector;.getCurrentSpanX ()F
    D/dalvikvm(  294): VFY: replacing opcode 0x74 at 0x0040
    I/dalvikvm(  294): Could not find method android.view.ScaleGestureDetector.getPreviousSpanX, referenced from method com.adobe.air.gestures.AIRGestureListener.onScale
    W/dalvikvm(  294): VFY: unable to resolve virtual method 416: Landroid/view/ScaleGestureDetector;.getPreviousSpanX ()F
    D/dalvikvm(  294): VFY: replacing opcode 0x74 at 0x009a
    D/dalvikvm(  294): VFY: dead code 0x0043-0067 in Lcom/adobe/air/gestures/AIRGestureListener;.onScale (Landroid/view/ScaleGestureDetector;)Z
    D/dalvikvm(  294): VFY: dead code 0x009d-0115 in Lcom/adobe/air/gestures/AIRGestureListener;.onScale (Landroid/view/ScaleGestureDetector;)Z
    D/dalvikvm(  294): VFY: dead code 0x0136-013a in Lcom/adobe/air/gestures/AIRGestureListener;.onScale (Landroid/view/ScaleGestureDetector;)Z
    D/BOOTSTRAPPER(  294): Using version 118 of BOOTSTRAPPER - Both markets
    W/OrientationEventListener(  294): Cannot detect sensors. Not enabled
    D/StartupTime2(  294): :1331752183097
    D/libEGL  (  294): egl.cfg not found, using default config
    D/libEGL  (  294): loaded /system/lib/egl/libGLES_android.so
    I/DEBUG   (   31): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
    I/DEBUG   (   31): Build fingerprint: 'generic/sdk/generic:2.3.3/GRI34/101070:eng/test-keys'
    I/DEBUG   (   31): pid: 294, tid: 294  >>> air.br.com.abril.ibadpsreader <<<
    I/DEBUG   (   31): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
    I/DEBUG   (   31):  r0 00000000  r1 81c12be8  r2 0000010c  r3 810fac6d
    I/DEBUG   (   31):  r4 002cdcc8  r5 81c571f8  r6 002c1a18  r7 811008ad
    I/DEBUG   (   31):  r8 002cdcc8  r9 bea37240  10 81c571f8  fp bea371e4
    I/DEBUG   (   31):  ip 8110894d  sp bea37190  lr 81100667  pc 810fac70  cpsr 00000030
    I/DEBUG   (   31):          #00  pc 000fac70  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):          #01  lr 81100667  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):
    I/DEBUG   (   31): code around pc:
    I/DEBUG   (   31): 810fac50 e7061c1d 0000270f e59fc008 e08fc00c
    I/DEBUG   (   31): 810fac60 e2400048 e12fff1c 00000009 6d40b510
    I/DEBUG   (   31): 810fac70 6a8b6801 bd104798 46c04770 327cb510
    I/DEBUG   (   31): 810fac80 581b0093 d00f428b d0042b00 005b23fa
    I/DEBUG   (   31): 810fac90 3c0158c4 290050c4 23fad004 58c4005b
    I/DEBUG   (   31):
    I/DEBUG   (   31): code around lr:
    I/DEBUG   (   31): 81100644 1c046c46 2e00447d 4a55d006 58a91c30
    I/DEBUG   (   31): 81100654 23004788 62336273 20b06821 1c20580b
    I/DEBUG   (   31): 81100664 4a504798 447a1c20 218c4790 58230088
    I/DEBUG   (   31): 81100674 d0002b00 238de07a 58a1009a d0002900
    I/DEBUG   (   31): 81100684 228ee068 58600091 d15b2800 0081208f
    I/DEBUG   (   31):
    I/DEBUG   (   31): stack:
    I/DEBUG   (   31):     bea37150  00000001
    I/DEBUG   (   31):     bea37154  afd10a58  /system/lib/libc.so
    I/DEBUG   (   31):     bea37158  002c1a2c  [heap]
    I/DEBUG   (   31):     bea3715c  afd4632c
    I/DEBUG   (   31):     bea37160  00214000  [heap]
    I/DEBUG   (   31):     bea37164  afd110d4  /system/lib/libc.so
    I/DEBUG   (   31):     bea37168  81c571f8  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea3716c  002c1a18  [heap]
    I/DEBUG   (   31):     bea37170  002c1a18  [heap]
    I/DEBUG   (   31):     bea37174  811008ad  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea37178  002cdcc8  [heap]
    I/DEBUG   (   31):     bea3717c  bea37240
    I/DEBUG   (   31):     bea37180  81c571f8  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea37184  810e832f  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea37188  df002777
    I/DEBUG   (   31):     bea3718c  e3a070ad
    I/DEBUG   (   31): #00 bea37190  002cdcc8  [heap]
    I/DEBUG   (   31):     bea37194  81100667  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea37198  002cdcc8  [heap]
    I/DEBUG   (   31):     bea3719c  81c571f8  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea371a0  bea37248
    I/DEBUG   (   31):     bea371a4  811007fb  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea371a8  00b5693a
    I/DEBUG   (   31):     bea371ac  002cdcc8  [heap]
    I/DEBUG   (   31):     bea371b0  bea37248
    I/DEBUG   (   31):     bea371b4  811008b9  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea371b8  81c571f8  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea371bc  002da3e8  [heap]
    I/DEBUG   (   31):     bea371c0  bea37248
    I/DEBUG   (   31):     bea371c4  810e05bd  /data/data/com.adobe.air/lib/libCore.so
    I/DEBUG   (   31):     bea371c8  000001e0
    I/DEBUG   (   31):     bea371cc  000002fa
    I/DEBUG   (   31):     bea371d0  bea371d8
    I/DEBUG   (   31):     bea371d4  bea371f4
    D/Zygote  (   33): Process 294 terminated by signal (11)
    I/ActivityManager(   61): Process air.br.com.abril.ibadpsreader (pid 294) has died.
    E/InputDispatcher(   61): channel '4075bdc0 air.br.com.abril.ibadpsreader/air.br.com.abril.ibadpsreader.AppEntry (server)' ~ Consumer closed input channel or an error occurred.  events=0x8
    E/InputDispatcher(   61): channel '4075bdc0 air.br.com.abril.ibadpsreader/air.br.com.abril.ibadpsreader.AppEntry (server)' ~ Channel is unrecoverably broken and will be disposed!
    I/BootReceiver(   61): Copying /data/tombstones/tombstone_03 to DropBox (SYSTEM_TOMBSTONE)
    I/WindowManager(   61): WIN DEATH: Window{4075cfb0 SurfaceView paused=false}
    I/WindowManager(   61): WIN DEATH: Window{4075bdc0 air.br.com.abril.ibadpsreader/air.br.com.abril.ibadpsreader.AppEntry paused=false
    I tried different ways to fix it, changing the version android-8, android-9, android-16 but all without success.
    Thanks,
    Paulo.

    please remove AIR runtime.apk first. and then find a correct runtime.apk for emulator and install again.
    and check the adb logcat carefully. if you find the log containing 'native abi mismatch', this apk is not suitable for your emulator.
    another way to check is that get buid.prop by adb pull /system/build.prop. you will find the device or emulator abi, it should be armeabi or armeabi-v7a. different devices have different abi.
    and then use jar tvf runtime.apk to check the abi in your package. you could lib/<abitype>/lib/libcore.so or similiar.
    the thrid way to check is that for example on my pc, my ari apk is 8mb. after install, check in the devices, the install size is about 20m. if you see about 8mb, install failed.
    good luck.

  • APP created with Air for Android but doesn't work on the emulator for test - Help!

    When I create an application using Flash CS5.5>>> AIR FOR ANDROID.
    After creating a test page I go to publish settings and send the app on Emulator RELEASE ... The APP is loaded correctly but as soon as you start the emulator, give this error "The application XXnameappXX (process air.XXnameappXX) has stopped unexpectedly. Please try again" Help Please!

    Ok i've find this before "Adobe Flash CS5/AIK2.5/runtimes/air/android/emulator/Runtime.apk" and install it on android emulator! Now works all i hope! Thanks for your answer!

  • Without SLAT - Android emulators (for App development) will run OK

    processor  :
    http://ark.intel.com/products/33922/Intel-Core2-Quad-Processor-Q9300-6M-Cache-2_50-GHz-1333-MHz-FSB
    model:  // RAM 8GB    64 bit OS
    HP Pavilion Elite m9372.gr Desktop PC    2008-2009
    part_number : FZ110AA-B1A
    Tried run WP8.1 emulators but fails - not shown.
    BTW using(upgraded from Vista) 8.1 (Not Pro) - what can do with having in Processor: Virtualization (I enabled it) but
    without SLAT(coreinfo.exe)...?
    Android emulators (for App development) will run OK (VS 2013 - CORDOVA App or Eclipse or Android Studio)? not installed yet...
    Also Linux VMs (Cent OS 7, Ubuntu 04.15) using Vmware Player 7 run OK?

    You should really ask about running Windows 10 in VMWare player in the
    VMWare support forum for player.
    https://communities.vmware.com/community/vmtn/player
    As for the keys, same as running it on real hardware.
    Pro: NKJFK-GPHP7-G8C3J-P6JXR-HQRJR
    Enterprise: PBHCJ-Q2NYD-2PX34-T2TD6-233PK
    To download:
    http://windows.microsoft.com/en-us/windows/preview-iso
    Bob Comer

  • How to use the Google Android Emulator in Flash Builder on Windows 7?

    I want to try out Flash Builder to create an app, but I cannot find out how to use the Google Android Emulator in Flash Builder. The simulators in Flash Builder work, and the android emulator is installed correctly and can run. I just can't seem to connect them. How do I do that?

    Hi Pahup,
    Thank you for your reply!!
    I adapted an Android App using Flash CC on a Mac. I already published this App for the Apple App Store. When I published the App for Android I chose Air 3.7.xxx for Android. I also created the p12 certificate using Flash CC in the publishing settigns for Android. So my App is theoretically finished and ready for Upload.
    When I went to the Google Play Store Developer Console I had the options to
    1.) Upload APK
    or
    2.) Prepare Store Entry
    ...so I prepared the Store entry first. When I go to "APK"-Tab in the console it looks like this:
    ... it says "Upload APK" and the Button below "Get Licence Key". When I click on the license Key Button it looks like this:
    So I think I should enter this RSA-Key somehow into my App BEFORE uploading it to the Google Play Store. This is recommended when an Ap is set to be paid. My Application is set to paid.
    I did not use any kind of licensing API (until now - cause I don´t know how and what it is for)
    This is all new to me. It is the first App I want to bringt to the Android market. I really hoped it would be as easy as getting an app into the Apple App Store. I found so many step by step instructions for dummies on "How to get an Flash iOS App into the App Store plus creating all the certificates needed", so I thought it would be the same for Android. But there is no help at all at the moment. I am totally confused.
    So any help, hint or instrusction would be great!!
    By the way - this is the App I want to get into the Google Play Store

  • Error while deploying the ADF Mobile application to the Android Emulator.

    Hi,
    I'm getting an error when trying to deploying a basic helloworld ADF mobile application to my Android sdk emulator which is already running as below.
    I'm not able to make anything from this limited log. Can anyone have a look and help me with what could be wrong.
    Any kind of suggestions are most welcome.
    [06:09:30 PM] Print the version of this tool (1.7).
    [06:09:30 PM] dx --help
    [06:09:30 PM] Print this message.
    [06:09:30 PM] Command-line execution failed (Return code: 1)
    [06:09:30 PM] Command-line executed: "D:\1_DevCore\android_sdk\adt-bundle-windows-x86_64-20130219\sdk\platform-tools\dx.bat" dex debug keep-classes output="D:\jdevuserhome\111230\ADFMobile\MyMobileApps\ MyMobileApp01\ MyMobileApp01\deploy\ANDROID_MOBILE_NATIVE_archive1\classes.dex" D:\jdevuserhome\111230\ADFMobile\MyMobileApps\ MyMobileApp01\ MyMobileApp01\deploy\ANDROID_MOBILE_NATIVE_archive1\classes D:\jdevuserhome\111230\ADFMobile\MyMobileApps\ MyMobileApp01\ MyMobileApp01\deploy\ANDROID_MOBILE_NATIVE_archive1\framework\build\jar\AND_ksoap.jar D:\jdevuserhome\111230\ADFMobile\MyMobileApps\ MyMobileApp01\ MyMobileApp01\deploy\ANDROID_MOBILE_NATIVE_archive1\framework\build\jar\Container.jar D:\jdevuserhome\111230\ADFMobile\MyMobileApps\ MyMobileApp01\ MyMobileApp01\deploy\ANDROID_MOBILE_NATIVE_archive1\framework\build\jar\IDMMobileSDK.jar D:\jdevuserhome\111230\ADFMobile\MyMobileApps\ MyMobileApp01\ MyMobileApp01\deploy\ANDROID_MOBILE_NATIVE_archive1\framework\build\jar\logging_dalvik_release.jar D:\jdevuserhome\111230\ADFMobile\MyMobileApps\ MyMobileApp01\ MyMobileApp01\deploy\ANDROID_MOBILE_NATIVE_archive1\framework\build\jar\phonegap.jar D:\jdevuserhome\111230\ADFMobile\MyMobileApps\ MyMobileApp01\ MyMobileApp01\deploy\ANDROID_MOBILE_NATIVE_archive1\framework\build\jar\vmchannel_dalvik_release.jar
    [06:09:30 PM] Shutting down Android Debug Bridge server...
    [06:09:30 PM] Deployment cancelled.
    [06:09:30 PM] ---- Deployment incomplete ----.
    [06:09:30 PM] Deployment failed due to one or more errors returned by 'D:\1_DevCore\android_sdk\adt-bundle-windows-x86_64-20130219\sdk\platform-tools\dx.bat'. The following is a summary of the returned error(s):
    Command-line execution failed (Return code: 1)
    Thanks,
    Bhasker

    I'm not able to make anything from this limited log.
    For Android emulator logs run the following command.
    adb logcat
    logcat | Android Developers

  • Getting Error while deploying ADF Mobile App in android Emulator

    Hi All,
    I am getting following error while deploying mobile app into android emulator........i have gone through google search and i hve done with all the steps...as follows
    1. keytool -genkey -v -keystore debug.keystore -alias androiddebugkey -keyalg RSA -keysize 2048 -validity 10000
    i gave password, last name ,organization, state and country
    2. jarsigner -sigalg MD5withRSA -digestalg SHA1 -verbose -keystore /Users/Admin/.android/debug.keystore C:\JDeveloper\mywork\GeneralMobileApp\deploy\ANDROID_MOBILE_NATIVE_archive1/generalmobileapp.apk
    3. /platform-tools/adb -e install -r C:\JDeveloper\mywork\GeneralMobileApp\deploy\ANDROID_MOBILE_NATIVE_archive1/generalmobileapp.apk
    After the above step...i got SUCCESS message(while running the above step in command prompt ).........
    Even after that.... I am getting same error while deploying my app using jdeveloper into android emulator.....
    ERROR:
    [09:40:02 AM] Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
    [09:40:02 AM]
    [09:40:02 AM] Command-line execution failed (Return code: 0)
    [09:40:02 AM] Command-line executed: "E:\android\adt-bundle-windows-x86_64\sdk\platform-tools\adb" -e install -r "C:\JDeveloper\mywork\GeneralMobileApp\deploy\ANDROID_MOBILE_NATIVE_archive1\generalmobileapp.apk"
    [09:40:02 AM] Deployment cancelled.
    [09:40:02 AM] ---- Deployment incomplete ----.
    [09:40:02 AM] Deployment failed due to one or more errors returned by 'E:\android\adt-bundle-windows-x86_64\sdk\platform-tools\adb'. The following is a summary of the returned error(s):
    Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE]
    Regards,
    Nani
    Edited by: 962874 on Jan 12, 2013 6:46 AM

    The emulator can run out of space for applications - so if you have other applications deployed to the emulator remove them and then try again.
    Other options here:
    http://stackoverflow.com/questions/2239330/how-to-increase-storage-for-android-emulator-install-failed-insufficient-stora

  • How to test my ADF mobile browser application on Android emulator?

    Hi
    I have created a Mobile Browser Application. Could anyone please tell me how to test it on Android emulator?
    I read the information about downloading and configuring simulators(Blackberry) and emulators(Microsoft Windows) for ADF Mobile browser in "Running Mobile Device Simulators with ADF Mobile and JDeveloper". However they didn't mention details about downloading and configuring "*Android Emulators*". Could anyone please help me in this.
    Regards
    Raja

    Hi,
    thought you want to test a mobile BROWSER application on android emulator you have to use android JDK like mentioned by codigoadf.
    I guess also that the configuration (create virtual android device, ...) will be the same.
    You have to use the same URL for your application than on your PC but replace 127.0.0.1 by 10.0.2.2 (In case your WLS runs on the same machine as the android emulator)
    regards
    Peter

  • Adobe Air - Android emulator

    Hi,
    I am trying to put an android aplication working on the android emulator.
    I have developed it in Flash Cs5, then i have created the apk file and installed it on the emulator.
    The emulator has the adobe air for emulator installed.
    When i try to run the app it gives my "the application ... has stoped unexpectedly. Please try again".
    The aplication has a simple square.
    When i write ./adb loga car, i have the following errors:
    I/ActivityManager(   66): Start proc air.Final1 for activity air.Final1/.AppEntry: pid=1082 uid=10031 gids={3003}
    D/TabletStatusBar(  258): lights on
    D/dalvikvm( 1082): Trying to load lib /data/data/com.adobe.air/lib/libCore.so 0x4063abc0
    I/WindowManager(   66): Setting rotation to 3, animFlags=1
    I/ActivityManager(   66): Config changed: { scale=1.0 imsi=310/260 loc=en_US touch=3 keys=2/1/1 nav=3/1 orien=P layout=0x10000014 uiMode=0x11 seq=18}
    D/Tablet/NotificationPanel(  258): notificationCount=0
    W/dalvikvm( 1082): No implementation found for native Lcom/adobe/air/AndroidActivityWrapper;.nativeSetVisible (Z)V
    W/WindowManager(   66): Window freeze timeout expired.
    W/WindowManager(   66): Force clearing orientation change: Window{40c41db0 air.Final1/air.Final1.AppEntry paused=false}
    D/AndroidRuntime( 1082): Shutting down VM
    W/dalvikvm( 1082): threadid=1: thread exiting with uncaught exception (group=0x40014760)
    E/AndroidRuntime( 1082): FATAL EXCEPTION: main
    E/AndroidRuntime( 1082): java.lang.UnsatisfiedLinkError: nativeSetVisible
    E/AndroidRuntime( 1082):     at com.adobe.air.AndroidActivityWrapper.nativeSetVisible(Native Method)
    E/AndroidRuntime( 1082):     at com.adobe.air.AndroidActivityWrapper.SetVisible(AndroidActivityWrapper.java:651)
    E/AndroidRuntime( 1082):     at com.adobe.air.AndroidActivityWrapper.onSurfaceInitialized(AndroidActivityWrapper.java:614 )
    E/AndroidRuntime( 1082):     at com.adobe.air.AIRWindowSurfaceView.surfaceChanged(AIRWindowSurfaceView.java:438)
    E/AndroidRuntime( 1082):     at android.view.SurfaceView.updateWindow(SurfaceView.java:571)
    E/AndroidRuntime( 1082):     at android.view.SurfaceView.access$000(SurfaceView.java:84)
    E/AndroidRuntime( 1082):     at android.view.SurfaceView$3.onPreDraw(SurfaceView.java:173)
    E/AndroidRuntime( 1082):     at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:590)
    E/AndroidRuntime( 1082):     at android.view.ViewRoot.performTraversals(ViewRoot.java:1325)
    E/AndroidRuntime( 1082):     at android.view.ViewRoot.handleMessage(ViewRoot.java:1944)
    E/AndroidRuntime( 1082):     at android.os.Handler.dispatchMessage(Handler.java:99)
    E/AndroidRuntime( 1082):     at android.os.Looper.loop(Looper.java:126)
    E/AndroidRuntime( 1082):     at android.app.ActivityThread.main(ActivityThread.java:3997)
    E/AndroidRuntime( 1082):     at java.lang.reflect.Method.invokeNative(Native Method)
    E/AndroidRuntime( 1082):     at java.lang.reflect.Method.invoke(Method.java:491)
    E/AndroidRuntime( 1082):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:841)
    E/AndroidRuntime( 1082):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:599)
    E/AndroidRuntime( 1082):     at dalvik.system.NativeStart.main(Native Method)
    W/ActivityManager(   66):   Force finishing activity air.Final1/.AppEntry
    W/WindowManager(   66): Failure taking screenshot for (135x84) to layer 21045
    W/ActivityManager(   66): Activity pause timeout for ActivityRecord{4073f990 air.Final1/.AppEntry}
    D/dalvikvm(   66): GC_EXPLICIT freed 498K, 49% free 13968K/27015K, paused 60ms+18ms
    W/ActivityManager(   66): Launch timeout has expired, giving up wake lock!
    W/ActivityManager(   66): Activity idle timeout for ActivityRecord{4073f990 air.Final1/.AppEntry}
    D/dalvikvm( 1070): GC_EXPLICIT freed 10K, 9% free 16186K/17671K, paused 9ms+5ms
    I/WindowManager(   66): Setting rotation to 0, animFlags=1
    I/ActivityManager(   66): Config changed: { scale=1.0 imsi=310/260 loc=en_US touch=3 keys=2/1/1 nav=3/1 orien=L layout=0x10000014 uiMode=0x11 seq=19}
    W/ActivityManager(   66): Activity destroy timeout for ActivityRecord{4073f990 air.Final1/.AppEntry}
    W/WindowManager(   66): Window freeze timeout expired.
    W/WindowManager(   66): Force clearing orientation change: Window{40745e50 Sorry! paused=false}
    D/Tablet/NotificationPanel(  258): notificationCount=0
    W/WindowManager(   66): App freeze timeout expired.
    W/WindowManager(   66): Force clearing freeze: AppWindowToken{41524680 token=ActivityRecord{4073c818 com.android.launcher/com.android.launcher2.Launcher}}
    I/InputDispatcher(   66): Dropped event because it is stale.
    i hope someone can help
    Thank you

    Hi,
    Did you create your apk file using Flash Builder Burrito? If yes, Flash Builder Burrito does not support emulators. Packages created with Burrito are only intended to run on pyshical devices.
    Thanks,
    -Sedat Akkus

  • How to compile the AIR app to android emulator

    How to compile the AIR application to run on emulator ?
    May be use the 'adb' command line ?

    -target The type of package to create. The supported package types are:
    air — an AIR package. “air” is the default value and the -target flag does not need to be specified when creating AIR or AIRI files.
    airn — a native application package for devices in the extended television profile.
    native — a native desktop installer. The type of file produced is the native installation format of the operating system on which the command is run:
    EXE — Windows
    DMG — Mac
    DEB — Ubuntu Linux
    RPM — Fedora or OpenSuse Linux
    apk — an Android package. A package produced with this target can only be installed on an Android device, not an emulator.
    apk-debug — an Android package with extra debugging information. (The SWF files in the application must also be compiled with debugging support.)
    apk-emulator — an Android package for use on an emulator without debugging support. (Use the apk-debug target to permit debugging on both emulators and devices.)
    Use the value as per your need. The you can use adb to push the packaged apk to your emulator.

  • Issue : OpenUI(Android client) for Agentry

    Hi Experts,
    Currently working on Syclo + Open UI (Android) and trying to run the sample .apk file given as part of SMP3.0 SP02.
    Facing issue while trying to do initial sync from emulator,
    same .apk file we have installed it on the device and we can see the page where we need to input server details and port.
    But the same page on the emulator is visible and only displays server filed alone and not finding the port field.
    Environment : Agentry Server 6.0, Agentry Editor Plugin 7.0, Mobile SDK3 (SMP3.0 SP02)
    Deployment : Standalone server mode
    Scenario : When try to do initial sync from the emulator after giving the server details getting below error
    Issues faced:
    First port number field is not visible on the emulator but able to it on the device? Do we need to create specific device type on the AVD manager
    Once the local system IP\ 10.0.2.2 is given it is not listing out the servers from emulator
    During initial Sync getting the below error – “SSL Hostname Invalid” and attached log file.
    Please suggest overcome the issue.
    With regards
    Shankar.K

    Thank you Stephen and Bill.
    Now I am trying out in the below environment.
    Environment: SMP 3.0 SP03, Agentry Editor Plugin 7.0, Mobile SDK3 (SMP3.0 SP02) and sample OpenUI application which come part of the SDK.
    I am able to get the “Iam here” page, downloaded the certificate and placed on the Android emulator under mnt->sdcard folder. When try to do initial synch from emulator getting below error. I have configured the default authentication for the application and application is consistent in the cockpit.
    16:56:14#+0530#INFO#com.sap.mobile.platform.server.cluster.service.impl.ClusterCommunicationsJGroupImpl##anonymous#Thread-13###Cluster node channel name: 'BDC6A-L-GXVHVS1-56715(bind_addr=10.117.147.205:53667)' | 2014 05 05 16:56:17#+0530#INFO#com.sap.mobile.platform.server.cluster.service.impl.ClusterCommunicationsJGroupImpl##anonymous#Thread-13###Cluster node channel name: 'BDC6A-L-GXVHVS1-44167(bind_addr=10.117.147.205:53670)' | 2014 05 05 16:56:20#+0530#INFO#System.out##anonymous#SMPServerStatusManager###SMPServerStatusManager: 86 of 86 tracked bundles have initialized. | 2014 05 05 16:56:21#+0530#INFO#com.sap.mobile.platform.server.cluster.service.impl.ClusterCommunicationsJGroupImpl##anonymous#Thread-13###Cluster node channel name: 'BDC6A-L-GXVHVS1-40724(bind_addr=10.117.147.205:53675)' | 2014 05 05 16:56:21#+0530#INFO#System.out##anonymous#SMPServerStatusManager###SMPServerStatusManager: The SMP server has initialized and is ready. | 2014 05 05 17:07:07#+0530#WARN#com.sybase.security.core.CertificateValidationLoginModule##anonymous#http-bio-8081-exec-2###The certificate (chain) is not valid. |
    From startup.log – it is clear the Agentry server is up and trying to connect via the url https://localhost:8081/OpenUI from emulator
    16:56:20 05/05/2014: Starting front ends
    16:56:20 05/05/2014: WebSockets Front End: Opening WebSockets servlet for sub-URL /OpenUI
    16:56:20 05/05/2014: Event: 17, 10, WebSockets Front End v7.0.3.159
    16:56:20 05/05/2014: Event: 0, 0, Old log files moved into C:\SAP\MobilePlatform3\Server\log\agentry\rolled\2014-05-05-165617
    16:56:20 05/05/2014: Event: 0, 23, Agentry startup is complete.
    I have generated the certificate and placed it in the server(\SAP\MobilePlatform3\Server\configuration\com.sap.mobile.platform.server.agentry) and client emulator (mnt->sdcard folder). But still I am facing the issue – “The certificate (chain) is not valid”.
    Experts guide me to resolve the issue.
    with regards
    Shankar.K

  • Android Emulator batch file....

    Hello Experts ,
        I am developing a Hybrid web Container application using MBO created using RFC(from EIS), and finally before seing the output in android emulator i want to run the Emulator.bat batch file which it shud exists in my workspace , That file helps to install the hybrid web container on virtual device.....But i couldn't find it ....How can we get that batch file ? does it come along with any installation of a software ...?
         Also let me know the sequence of installation steps for phonagap Eclipse including ADT plugins, Android SDK, Odata SDK and so on..what ever we need to install for that...
    Thanks,
    UK.

    Hi Dhiravia,
    If you want to convert the month format, please refer to the batch script below:
    SET Month=%DATE:~4,2%
     if %Month%==01 set Month=JAN
     if %Month%==02 set Month=FEB
     if %Month%==03 set Month=MAR
     if %Month%==04 set Month=APR
     if %Month%==05 set Month=MAY
     if %Month%==06 set Month=JUN
     if %Month%==07 set Month=JUL
     if %Month%==08 set Month=AUG
     if %Month%==09 set Month=SEP
     if %Month%==10 set Month=OCT
     if %Month%==11 set Month=NOV
     if %Month%==12 set Month=DEC
     echo %Month%
    To convert the date format via cmd, please also check this article:
    http://myblog4fun.com/archive/2012/01/06/getting-the-current-date-and-time-from-bat-files.aspx
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Can I add a calendar such as ical or google calendars and have it expand the date?

    In Google calendars or iCal you click on the date in the month view and you see the day itself listed with what is going on that day.  Is there a way to add an ical or google cal to iweb that would show the full month, but when the particular day is

  • Need to trim space from time field

    I've got a text box in my report where I am dropping in two times: start time and end time. {EarlyShiftStart}-{LateShiftEnd} My problem is if the late shift end is a time less than 10, it adds an extra space between the "-" and the start time. So ins

  • Videos inserted into Adobe Captivate 7

    Will a video inserted in Captivate 7 from my personal computer (event or synchronized) play in a published project on others' computers or do I need to find an online host for my videos?

  • Need help on transaction code to create

    1)How to create a transaction code with input parameter? 2) I have a selection screen with the input parameter VKORG. If I entered a value in vkorg, that related values only updated in custom table thru that transaction.

  • Final Cut Studio 3 upgrade from FCS 2

    What is the main difference between the Final Cut Studio 3 Upgrade version and the full retail version? I already have FCS 2 installed with all content but wonder if there's anything missing from the upgrade version compared to the full installation.