How do I get Air runtime for the android emulator

All the links I have found say you can download it after signing up for the pre-release; however, that is no longer viable as it is not pre-release anymore.  I cannot find anywhere to download the apk file anymore...  and I need to get it on the emulator.

I am still digging ... means I still look for the best way to install a Flex/Air combo that will allow me to develop Air Apps for Android (using a Maven based dev env - flex-mojo), means I actually do NOT want to install or use Flash Builder or Flash Professional CS5 or ... whatever.
So here is what I found out (the result of 3 days of work (elapse time)).
To get a Flex/Air SDK up and running you need to ...
Download the Flex SDK (e.g. 4.1.0.16076) from http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4This will NOT contain an/the AIR SDK (and that means also no runtimes)
Download the Air SDK (e.g. 2.5.1) from http://www.adobe.com/products/air/sdk/
Copy the Air SDK over the Flex SDK as described here http://kb2.adobe.com/cps/495/cpsid_49532.htmlNote: Make sure that the Air SDK is newer than the Flex SDK. Otherwise the Flex SDK might use features of the Air SDK that are not present in the Air SDK and that might result in compile or runtime errors. I was not able to find a definition of "newer", but assume that Air 2.5 is newer than Flex 4.1
... or ...
You download the Flex SDK 4.5.0.17689 from http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+HeroThis actually contains (means is already merged with) an Air SDK (don't know which version)
Right now, I am stuck to make this work with flex-mojos 3.7.1, but will report back, if I find a solution.

Similar Messages

  • When I download itunes, it says that Ipod Service failed to start. I checked the services under task manager and when I try to start it, it says access denied. How to I get access and for the ipod service to start and run?

    Please help. My ipod classic could not be recognised by itunes when I connect my ipod to PC. Previously it has been recognised before I updated. This was a while ago now and so I removed all apple files and re installed the latest itunes but am having the same problem.
    When I download itunes, it says that Ipod Service failed to start. I checked the services under task manager and when I try to start it, it says access denied. How to I get access and for the ipod service to start and run?

    Some anti-virus programs (e.g., McAfee) have this rule that can be invoked under the "maximum protection" settings: PREVENT PROGRAMS REGISTERING AS A SERVICE. If that rule is set to BLOCK, then any attempt to install or upgrade iTunes will fail with an "iPod service failed to start" message.
    If you are getting this problem with iTunes, check to see if your anti-virus has this setting and unset it, at least for as long as the iTunes install requires. Exactly how to find the rule and turn it on and off will vary, depending upon your anti-malware software. However, if your anti-virus or anti-malware software produces a log of its activities, examining the log may help you find the problem.
    For example, here's the log entry for McAfee:
    9/23/2009 3:18:45 PM Blocked by Access Protection rule NT AUTHORITY\SYSTEM C:\WINDOWS\system32\services.exe \REGISTRY\MACHINE\SYSTEM\ControlSet001\Services\iPod Service Common Maximum Protection:Prevent programs registering as a service Action blocked : Create
    Note that the log says "Common Maximum Protection: Prevent programs registering as a service". The "Common Maximum Protection" is the location of the rule, "Prevent programs registering as a service" is the rule. I used that information to track down the location in the McAfee VirusScan Console where I could turn the rule off.
    After I made the change, iTunes installed without complaint.

  • How I could get a receipt for the purchase i made in the app store?

    I just purchased an app for my iMac and I was wondering how I could get a receipt for the purchase?

    The redeipt comes in the your email automatically in 24 to 48 hours.

  • How do I get a manual for the i4s phone?

    how do I get a manual for the i4s phone?
    <Re-Titled By Host>

    The iPhone manuals are primarily user guides for a specific operating system version (e.g. iOS 7.1). You can download one from: Apple - Support - Manuals

  • TS1424 I'm being charged twice for the same order. Playtika coin purchases are a problem on Ipod.  How do I get a credit for the coins I did not get?

    Did anyone else have problems with in App purchases from an IPod?  I get charged twice for the same order...  How do I get a credit for the coins not received?

    Try contacting iTunes support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How can I get null values for the later weeks

    Hi All,
    When I execute this code I get the records till current week.
    How can I display the output so that I get null values for the later weeks. (with the help of v_numOfWeeks variable in the code)
    Thanks,
    Vikram
    DECLARE
       v_query VARCHAR2(4000);
       TYPE ref_cursor IS REF CURSOR;
       v_refcur ref_cursor;
       v_sum NUMBER;
       v_id NUMBER;
       v_name VARCHAR2(1000);
       v_weeknum NUMBER;
       v_pernum NUMBER;
       v_numOfWeeks NUMBER := 5;
    BEGIN
    v_query := ' SELECT SUM(product_bkg), postn_id, postn_tbl.postn_name, b.week_num, b.period_num
                              FROM ops_cv_extract b, (SELECT row_id, desc_text postn_name
                          FROM s_postn) postn_tbl
                          WHERE lvl_6_id = 5767
                          AND fiscal_year = 2008
                          AND b.week_num < 4
                          AND b.period_num = 3
                          AND b.postn_id = TO_NUMBER(postn_tbl.row_id)
                          GROUP BY postn_id, postn_tbl.postn_name, b.week_num, b.period_num
                          ORDER BY  postn_tbl.postn_name, b.week_num';
    OPEN v_refcur FOR v_query;
    LOOP
       FETCH v_refcur INTO v_sum, v_id, v_name, v_weeknum, v_pernum;
       EXIT WHEN v_refcur%notfound;
       dbms_output.put_line('P'|| v_pernum||'W'|| v_weeknum||' '||v_name||' '||v_sum);
    END LOOP;
    END;
    This is the output when I execute this code.
    P3W1 COMM CNTRL ISAM 213 26961.61
    P3W2 COMM CNTRL ISAM 213 12870.4
    P3W3 COMM CNTRL ISAM 213 245.88
    P3W1 COMM CNTRL ISAM 273 72831.2
    P3W2 COMM CNTRL ISAM 273 8739.38
    P3W3 COMM CNTRL ISAM 273 3764.92
    P3W1 COMM CNTRL TAM 213 49844
    P3W2 COMM CNTRL TAM 213 20515.17
    P3W3 COMM CNTRL TAM 213 16167.46
    P3W2 COMM CNTRL TAM 216 12561.4
    P3W3 COMM CNTRL TAM 216 2027.1
    P3W1 COMM CNTRL TAM 273 -3336.71
    P3W2 COMM CNTRL TAM 273 -1376.68
    P3W3 COMM CNTRL TAM 273 19707.42
    P3W1 Damon Walters -609.07
    P3W2 Damon Walters 30030.24
    P3W3 Damon Walters 37475.1
    This is the output I'd like to get
    P3W1 COMM CNTRL ISAM 213 26961.61
    P3W2 COMM CNTRL ISAM 213 12870.4
    P3W3 COMM CNTRL ISAM 213 245.88
    P3W4 COMM CNTRL ISAM 213
    P3W5 COMM CNTRL ISAM 213
    P3W1 COMM CNTRL ISAM 273 72831.2
    P3W2 COMM CNTRL ISAM 273 8739.38
    P3W3 COMM CNTRL ISAM 273 3764.92
    P3W4 COMM CNTRL ISAM 273
    P3W5 COMM CNTRL ISAM 273
    P3W1 COMM CNTRL TAM 213 49844
    P3W2 COMM CNTRL TAM 213 20515.17
    P3W3 COMM CNTRL TAM 213 16167.46
    P3W4 COMM CNTRL TAM 213
    P3W5 COMM CNTRL TAM 213
    P3W1 COMM CNTRL TAM 273 -3336.71
    P3W2 COMM CNTRL TAM 273 -1376.68
    P3W3 COMM CNTRL TAM 273 19707.42
    P3W4 COMM CNTRL TAM 273
    P3W5 COMM CNTRL TAM 273
    P3W1 Damon Walters -609.07
    P3W2 Damon Walters 30030.24
    P3W3 Damon Walters 37475.1
    P3W4 Damon Walters
    P3W5 Damon Walters Edited by: polasa on Oct 28, 2008 6:42 PM

    Sure, in a Single SQL ->
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:00.01
    satyaki>
    satyaki>
    satyaki>-- Start Of Test Data --
    satyaki>with week_tab
      2  as
      3    (
      4      select 1 period_num, 1 week_num, 10 bkg1 from dual
      5      union all
      6      select 1, 2, 40 from dual
      7      union all
      8      select 1, 3, 30 from dual
      9      union all
    10      select 1, 2, 20 from dual
    11      union all
    12      select 1, 1, 10 from dual
    13      union all
    14      select 1, 1, 20 from dual
    15      union all
    16      select 1, 3, 10 from dual
    17      union all
    18      select 2, 1, 15 from dual
    19      union all
    20      select 2, 2, 20 from dual
    21      union all
    22      select 2, 3, 10 from dual
    23      union all
    24      select 2, 1, 15 from dual
    25      union all
    26      select 2, 2, 30 from dual
    27      union all
    28      select 2, 3, 20 from dual
    29    )
    30  -- End Of Test Data --
    31  select period_num,
    32         week_num,
    33         (
    34            select sum(week_tab.bkg1)
    35            from week_tab
    36            where period_num = m.period_num
    37            and   week_num   = m.week_num
    38            group by week_num, period_num
    39         ) sum_bkg1
    40  from (
    41        select dum.week_num,
    42              wk.period_num
    43        from (
    44                select 1 week_num from dual
    45                union all
    46                select 2 from dual
    47                union all
    48                select 3 from dual
    49                union all
    50                select 4 from dual
    51                union all
    52                select 5 from dual
    53              ) dum ,
    54              (
    55                select distinct period_num
    56                from week_tab
    57          ) wk
    58      ) m;
    PERIOD_NUM   WEEK_NUM   SUM_BKG1
             1          1         40
             1          2         60
             1          3         40
             1          4
             1          5
             2          1         30
             2          2         50
             2          3         30
             2          4
             2          5
    10 rows selected.
    Elapsed: 00:00:00.48
    satyaki>Regards.
    Satyaki De.

  • How can I get a refund for the u2 album that Apple charged me for

    I have just been charged £27.99 for the U2 album that I did not want. How do I get a refund for this. I can't stand U2!!

    £27.99 for the album ? If you are referring to The Songs Of Innocence album (£7.99) then that was given free to everyone three months ago, and was free until 13th October - you are sure that you've been charged, it's not a temporary store holding charge ? The purchase price should show on your account's purchase history : See your purchase history in the iTunes Store - or http://reportaproblem.apple.com on your iPad.
    If you have been charged for the album but you didn't buy it then try contacting iTunes Support via the above 'report a problem' link.
    Or you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • How can i get windows drivers for the 2013 MacBook Pro Retina?

    Hi there,
    today I have installed on my late 2013 MBP retina via the Boot Camp Windows 8.1. The installation was smoothly but some drivers are not present including the wifi driver.
    Through online research, I found out that in the current version of Boot Camp no drivers for the 2013 model are listed. Do you have one probably have an idea how to get it to run anyway?

    For feedback from experienced users,  post in the Final Cut Pro X forum here.
    They should be able to offer suggestions for training.
    Apple - Final Cut Pro X - Resources

  • With the recent upgrade to FF 6.0 how do we get password protection for the internet with FF back?

    When our Mac was set up we had a password protected startup for FF, so without the password you could not start it.
    With the recent upgrade to 6.0 that password request disappeared. How do we get it back?

    When our Mac was set up we had a password protected startup for FF, so without the password you could not start it.
    With the recent upgrade to 6.0 that password request disappeared. How do we get it back?

  • How can we get record numbers for the rows after grouping them?

    Post Author: preethibaddam
    CA Forum: Formula
    hii everyone,
    i want to number those records which are grouped by a column.
    eg: if i group the emp table with the deptno then the records for the deptno10 group should start from 1 and end with an N number and again when it shifted to deptno20 group than the records for that deptno20 should again start with 1 and end with N number.
    i tried placing record number from the field explorer but it is not working. the other group records start with the ended number from the first group.
    thanks

    Post Author: V361
    CA Forum: Formula
    Record number from CR will count all the records.  You could use a running total, and reset on change of group.

  • HT5312 How do I get this email for the security questions? It's only a copy on the website so I can't send it or fill it out.

    The rescue email on the website is only a copy, so I can't fill it out or send it. What am I supposed to do?

    You've followed the steps half-way down that page :
    Navigate to appleid.apple.com using your web browser.
    Click "Manage your account"
    When prompted, sign in using your Apple ID and password.
    Click Password & Security
    You'll be asked to answer 2 of your 3 security questions before you can make any modifications. If you are unable to remember your answers, you can choose to send an email to your rescue email to reset your security questions.
    The reset link will only show if you have a rescue email address (which is not the same thing as an alternate email address) set up on your account. If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • HT2305 how do i get administrator priveleges for the folder i need to install itunes..

    I have tried for 2 entire days of my weekend now - to simply REINSTALL i tunes....I am the admin on the user acct....admin on the browser im using...disables Norton totally....WHAT AM I DOING WRONG?? i AM NOT AN IDIOT WHEN I COMES TO COMPUTER ISSUES...HATE TO BE DEFEATED...BY A PC...REALLY....
        SO what is the deal with the download not finishing b/c of Admin CRAP....it says I cant finish the download as I dont have admin rights...NOT TRUE...Ive installed and reinstalled...SOMEONE PLEASE HELP ME....STEP BY STEP ON THIS = PLEASE...

    Hi David,
    In 8.5 or 8.6, there is a shipping example that contains the filter design subVI you need:
    examples\R Series\FPGA Fundamentals\Analysis and Control\Filter and DC-RMS\Using Reconfigurable Butterworth Filter - R-series.lvproj
    In LabVIEW 2009, there is a new palette under My Computer: FPGA Interface>>Scaling, with a new Butterworth Coefficients VI on it. That will produce the quantized coefficients you need in the format expected by the FPGA Butterworth Filter.
    Regards,
    Jim

  • How do I get time & date for specific web sites visits from the fire fox history?

    how do I get history information for the time and date I went to specific web sites from firefox?

    The 'View' menu at the top, select Sidebar > History. At the right top of the sidebar that appears, click "View" button, select "View by date" or "View by date and site".

  • Embed Air Runtime - Get Air Runtime | Pros and Cons?

    Preparing an App for Android (never done for Android before)
    I find in the Air for Android Settings > Deployment.
    Embed Air Runtime with application
    Get Air Runtime from Google Android Market
    Which to use for what?
    Any help is greatly appreciated.

    embedding the air runtime increases the size of your app, but gurantees users will not need to do anything else (like download and install the air runtime from the google android market) to use your app.

  • How can I get an invoice for money taken from my card?

    How can I get an invoice for the money taken from my card???

    Hi
    You can login to https://www.adobe.com/account/account-orders.html and print your invoice.
    Thanks
    -sarabjit

Maybe you are looking for

  • Analysis Authorization Issue 7.3

    Hello Friends, System BW 7.3, Currently there are 80 odd analysis authorization objects We want to introduce a new info object (GL Account) to be authorization relevant, ( there are few objects in the system which are already authorization relevant i

  • Assigning Mobile Group to a User

    I plan to use the <i>Mobile Group</i> filter for a SyncBO, to avoid too large data volumes on clients - BUT I find it very hard to administer through MEREP_PD and impossible to assign a user to a mobile group in advance of application deployment. We

  • ASSIGN_TYPE_CONFLICT - ABAP Dump Error!

    Hi Friends, I am trying to load data from PSA to InfoCube and getting this dump error: <b>ASSIGN_TYPE_CONFLICT</b> Is there anyone who has also faced the similar error and could tell me the possible solution for this? Your help will be appriciated in

  • I want to show labels having images one by one in Panel

    i want to show labels having images one by one in Panel through a while loop... I made an ImagIcon array. It doesn't work properly. It shows only first image while the variable is incrementing. :( This is my code...(Plz check it....) import java.awt.

  • Premiere exports in incorrect pixel aspect ratio

    My Panasonic camera shoots quicktime .mov JPEG videos in a 720X408 px resolution. I am having a very hard time editing them in Premiere, because I cannot get it to export them in a correct pixel aspect ratio. Maybe you can figure out what I'm doing w