Files in Android App

How do I sync the files in my phone app to the computer @www.acrobat.com?
Also some files are being repeated on the app 20 times.  How do I correct that?

Hi,
Sorry I complete missed the mail ;-(...
I have not too much time now to see what is your problem, the lines containig the error "seems" to be a problem with the location of files... I think you ar not "including" "packaging" the contens of the www dir into the final project...
Anyway, some time ago I was make an flex project to test... I don't know if it works now...( I must install FB4.6 .... normally I use FDT )...
You can find it here... in the fixed issues section
http://code.google.com/p/stagewebviewbridge/issues/detail?id=9&can=1
Say me if it helps....
El 19/12/2011, a las 23:13, WilliamACollins escribió:
Re: Android, StageWebView and Local media files in mobile app
created by WilliamACollins in Mobile Development - View the full discussion
Hi, x. I contacted you a week or so ago about this and you asked for more error information. I forwarded that to you and haven't heard back yet. Thanks for checking in with me.
Regards,
William
Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4094347#4094347
To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4094347#4094347. In the Actions box on the right, click the Stop Email Notifications link.
Start a new discussion in Mobile Development by email or at Adobe Forums
For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Similar Messages

  • [FEATURE REQUEST] - dlna client in Xperia WALKMAN Android app does not support flac or ogg files

    Hi, I have found a pretty bad bug in the dlna support in the WALKMAN android app for Xperia phones.
    Please could a mod or a community person who is in contact with the developers, pass this info on to them and ask them to please work on it.
    I have the latest updated Version 8.3.A.0.5 of the WALKMAN android app installed on a SONY XPERIA Z mobile phone and I have a dlna server set up and running on my local network.
    If I download, install and use the DNLA Total Media app available in the Google play store instead of the WALKMAN app, I can play flac and m4a files; no problem.
    However, if I use the WALKMAN app to browse to my dlna server and try to play flac or m4a files, I get a small black box on screen that says "Content not available."
    If I browse to and select an mp3 file instead, the WALKMAN app will play (stream) the mp3 file and no small black box will appear.
    So it looks like the dlna part of the SONY WALKMAN app is missing support for some audio file container types which are supported by default on the Android operating system and work natively in the WALKMAN app (I tested play back from internal storage.) I believe ogg format playback is missing also. Because it is not required by the dlna specification.
    Please improve file type support in the dlna client part of the WALKMAN app for XPERIA phones. People working in professional audio environments don't use mp3 anymore (And haven't done for over five years.)
    Thank You

    Thanks for the feedback!
    As you say, i believe the DLNA standard doesn't have any support for flac and ogg but i've seen some 3:rd party apps that can do it but i'm not sure if those uses DLNA in that case or just UPnP. I will forward your feedback though.
    The only solution for this that i know of today is to use a 3:rd party app or perhaps mount the share using SMB instead from Settings -> Storage.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Unable to start the android app while clicking the appropriate file

    Hi I have developed andoid app and now I am porting it on bb z10 using eclipse plugin. I have set intent filter in AndroidManifest.xml which should allow any file with .camem extension to start the app. It happens in original android app in android mobile but it does not happen in ported BB app in BB z10 phone. Please help. My AndroidManifest.xml is given below:
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.ca.secure.mail"
    android:versionCode="1"
    android:versionName="2014Q2 Sprint1" >
    <uses-sdk
    android:minSdkVersion="10"
    android:targetSdkVersion="16" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_ALL_DOWNLOADS" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
    <application
    android:name=".util.DatabaseManager"
    android:enabled="true"
    android:icon="@drawable/app_icon"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:theme="@style/EmailTheme" >
    <activity
    android:name=".ui.ReadHTMLActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:excludeFromRecents="true"
    android:label="@string/app_name" >
    <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:pathPattern="*.htm" />
    <data android:mimeType="text/html" />
    </intent-filter>
    <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:pathPattern="*.camem" />
    <data android:mimeType="application/octet-stream" />
    </intent-filter>
    <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:pathPattern="*.camem" />
    <data android:mimeType="application/camem" />
    </intent-filter>
    </activity>
    <activity
    android:name=".ui.SaveArcotIDActivity"
    android:configChanges="orientation|keyboardHidden|screenSize" >
    <intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:scheme="esend" >
    </data>
    </intent-filter>
    </activity>
    <activity
    android:name=".ui.PasswordActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:exported="false"
    android:label="@string/app_name" />
    <activity
    android:name=".ui.SplashScreen"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:excludeFromRecents="true"
    android:label="@string/app_name" >
    <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    </activity>
    <activity
    android:name=".ui.DecryptedContentActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:exported="false"
    android:label="@string/app_name" />
    <activity
    android:name=".ui.TutorialActivity"
    android:exported="false"
    android:label="@string/app_name" />
    <activity
    android:name=".ui.RRFActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:exported="false"
    android:label="@string/app_name" />
    <activity
    android:name="com.ca.mam.emmlib.app.LibLoginActivity"
    android:exported="false"
    android:label="@string/app_name" />
    </application>
    </manifest>

    You're in the Device Support Forums. You might be best to post this in the Developer Forums for better exposure to those who could assist you. Chances are a moderator will move it for you.
    Cheers.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Transfering files from PC to be used in Android app

    Hello everyone. When transferring files from my PC to the Playbook where do I save them so I can work with them from within an Android app?

    To transfer some data, you can use an external drive or USB drive formatted with FAT32, exFAT or NTFS. If you want to move an user, install Migration Assistant > http://support.apple.com/kb/DL1557

  • Where are files downloaded by Android apps?

    Hello,
    I just downloaded 10.2.1 on my VZW Z30 Friday and immediately downloaded DatAnywhere. I was able to logon without an issue, but am curious where the downloaded data goes, as I can't locate it. So where does the downloaded data from android apps go in the file system?
    Thanks,
    Matt

    I'm not familiar with datAnywhere so can't comment on that app specifically.
    If you've been helped click on , if you've been saved buy the app.
    Developer of stokLocker, Sympatico and Super Sentences.

  • Seriously, No Android App to view CC stored files?

    Come on Adobe.
    Seriously, you don't have an Android App to access my "files" in my new creative cloud? Isn't that the point that I can view my CC files on a tablet or phone? It can't be that hard to write such an App.
    Or maybe look at Dropbox. I can see my files on my tablet with their app.

    For viewing and limited processing on Android, look at PS Touch.  Limit I see is the image size which is related the Android memory.
    PS Touch - phone   https://play.google.com/store/apps/details?id=air.com.adobe.pstouchphone&hl=en  $4.99.
                    - tablet    https://play.google.com/store/apps/details?id=air.com.adobe.pstouch&hl=en  $9.99
    DropBox works well also.
    RONC

  • Exit Android App with external *actionscript.as* files

    Hi, i'm trying to make this code work with a application that got 99% of code driving by external actionscript.as files;
    In another app without any external call i mean no actionscript.as files, the code work very fine.
    My goal is to shutdown any activity of the app when the user receive a call or something like that;
    Many thanks in advance and sorry my english
    Scene 1, Layer 'Layer 1', Frame 1, Line 14
    1046: Type was not found or was not a compile-time constant: KeyboardEvent.
    function handleActivate(event:Event):void
        NativeApplication.nativeApplication.systemIdleMode = SystemIdleMode.KEEP_AWAKE;
    function handleDeactivate(event:Event):void
        NativeApplication.nativeApplication.exit();
    function handleKeys(event:KeyboardEvent):void        ----- Line 14 -----
        if (event.keyCode == Keyboard.BACK)
            NativeApplication.nativeApplication.exit();
    if (Capabilities.cpuArchitecture == "ARM")
        NativeApplication.nativeApplication.addEventListener(Event.ACTIVATE, handleActivate, false, 0, true);
        NativeApplication.nativeApplication.addEventListener(Event.DEACTIVATE, handleDeactivate, false, 0, true);
        NativeApplication.nativeApplication.addEventListener(KeyboardEvent.KEY_DOWN, handleKeys, false, 0, true);

    Look Mr. Colin, added the import flash.events.KeyboardEvent; and thats what i got:
    Scene 1, Layer 'Layer 1', Frame 1,
    Access of undefined property:
    NativeApplication
    SystemIdleMode
    Keyboard
    Capabilities
    I'm addind this code inside Flash CS6, not via external.as

  • DPS android app for small screens, works, but poorly...

    There is a way to get the DPS android app compatable with 1400 devices, including mobile phones.
    In theory if you here reading this its because you have an android app made by the DPS app builder live in the play store and...
    A: found out that the android app is only available on large/xlarge screens
    B: are getting yelled at by your employer who bought the Adobe DPS subscription and claims this should work on his phone "because I looked at the Adobe site and it says android, my phone is an android, read their site and make it work"
    C: found this because you were smart enough to read through the forums before suggesting this as a publishing solution to your employer and want to know if it really works on android phones, in whcih case, you may want to make it easy on yourself and just say "no, it does not" and then waid for Adobe to officially support small/normal screens perhaps head over to this post and bring some attention to it so we can collectivly improve this already awesome tool: http://forums.adobe.com/thread/1097433
    however, before you attempt this please keep in mind the following:
    1- it does not work well, if at all, on certain devices. specifically the small phone devices with the slower processors. So what typically happens is that you need to delete the data for the app and wait nearly 10 min for the "checking for updates" to process and grab new edditions. Depending on your serivce provider, this can be a nightmare. So, do NOT even attempt this if you have a cap on your data plan, think about how long it would take to download a 100mb folio file on a 3g connection, not to mention the processor which the tablets have and phones do not have.
    Here is some more data:
    --Android 1 from Sprint: really super slow, thats all I gotta say
    --Android 2 from Verizon, again, slow, but works
    --Galaxy Nexus 4.1.1, Verizon 4g connection, works great, (10% of the time) lol. about 90% of the time the Galaxy Nexus needs to be restarted after installing, and will get stuck on the "updating library" screen. the only way to fix this for any of the above phones seems to be to clear all data, uninstall, re install, do not launch, restart phone, and then launch app.
    I am going to test the following soon:
         Samsung Galaxy Note II N7100 (1.6GHz Quad-core)
         (1.5GHz Quad-core)
              LG Optimus G E973
              Xiaomi MI-2
              LG Optimus 4X HD P880
              HTC One X
    (the idea being that perhaps we can go through the list from google in the play store and limit the devices its on, but at least with this solutuon as described below we can get rid of the "not availabe on your device" notice.)
    So before you read on, consider that for your end users. If you find a way to fix this, let me know, I have considered turning off hardware acceleration but have not tested this yet.
    2- if you choose to attempt this make sure you have a good understanding of command line AND you have a new version of the app ready if you want to roll back.
    consider this concept: (you should have these ready)
    app a- made by Adobe DPS app builder, works on only large and x-large android screens, lets say its version 100000 and 2.5.5.000. This is already in your google.play store account as a live app,
    app b- the app you are about to build in this example below, it will in theory work on small, medium, large, and x-large android screens, lets say its version is 110000 and 2.9.9.000 (it will be MADE FROM APP A, you will open it, edit it, and wrap it back up.)
    app c- made by Adobe DPS app builder, works on only large and x-large android screens, lets say its version 200000 and 3.5.5.000 (which would be good to have in case your version b above does not work the way you want)
    notice the VERSION codes. These are important because you can only go UP, you can not "roll back" to a previous version.
    Again, I do not suggest this, but if you are daring and have some development background, feel free to give it a shot.
    (I am not going to be able to support this info, but I can verify 100% that I got mine working, very poorly and slow, but it installs, pulls folios, and loads)
    PC WINDOWS ONLY, I have not tried this on a MAC.
    get this:
      http://www.7-zip.org/
    install it
    get this:
      http://code.google.com/p/android-apktool/
    read all about it.
    go here:
      http://code.google.com/p/android-apktool/downloads/list
    get:
              apktool1.4.3.tar.bz2
    and
              apktool-install-windows-r04-brut1.tar.bz2
    put them all in 1 folder, extract both items, all the way
    the grab the
              android-viewer.apk
    that Adobe DPS made, or whatever yours is named...
    and the
              release.keystore
    you made and put them in the same "stuff" folder. there should be 20 items total in here now.
    get this:
    http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u30-download-1377139.html
              jdk-6u30-windows-x64.exe
    do NOT use any other version, do NOT use version 7, use version 6.
    install it all. then find it. should be here- (C://program files/Java/)
    I recomend grabbing it all and putting it in your ROOT like this:
    C://Java/jdk1.6.0_30/bin
    then, put everything from the "stuff" folder into C://Java/jdk1.6.0_30/bin
    yep, all of it.
    now we are ready to get funky...
    run cmd line.
    open start menu, type
    cmd
    into the search bar, hit enter
    -------- run command line, get to proper directory
    cd ..
    cd ..
    cd Java/jdk1.6.0_30/bin
    (or wherever your 'stuff' is)
    --------open up
    apktool d android-viewer.apk android-viewer
    (this will make a folder called 'android-viewer' and you will be able to go into that folder and find the XML files in there)
    --------edit XML
    in file: /android-viewer/AndroidManifest.xml
    open up in dreamweaver and change this stuff:
    android:versionCode="_ENTER_NEW_NUMBER_" android:versionName="_ENTER_NEW_NUMBER_"
    <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
    in file: /android-viewer/assets/META-INF/AIR/application.xml
    open up in dreamweaver and change this stuff:
              <versionNumber>_MATCH_ABOVE_</versionNumber>
              <versionLabel>_MATCH_ABOVE_</versionLabel>
    <supports-screens android:smallScreens='true' android:normalScreens='true' android:largeScreens='true' android:xlargeScreens='true'/>
    --------package it back up
    apktool b android-viewer android-viewer-new.apk
    (this will repackage the folder into a new APK, note the name -new.apk added to the end)
    --------Sign
    jarsigner -keystore release.keystore -signedjar android-viewer-signed.apk android-viewer-new.apk YOUR_ALIAS
    (now you need to sign the -new apk and recreate it as signed)
    --------Verify
    jarsigner -verify -verbose -certs android-viewer-signed.apk
    (if the last line does not say 'successfully verified' and there is an error, make sure you are using version 6 of JDK and not 7)
    --------Update APK in play store
    Visit this page
    http://developer.android.com/distribute/googleplay/about/distribution.html#instant
    read the line that says "Instant publishing, instant updates"
    while you do, understand you are being lied to, it takes anywhere from 30 min to 4 hours for your update to be "instant".
    take the new "android-viewer-signed.apk"
    rename it, upload it, activate it, de activate the old one.
    important: beofe you click save, switch over to the "product details" tab and update your version notes.
    head over to your app page in the play store.
    sit there and click refresh every 10 min or take a nap and come back in a few hours.
    when you finally see the version number has updated, go to the browser on your phone
    find your app in the browser, refresh the page, make sure its got the new version number on it.
    install it on your small screen device, cross your fingers, and hope you do not get a message that says "not signed properly"
    if you do, feel free to start googling the stuff above to see where you went wrong.
    If it does work, go to your boss and have him download it and run it and say "see, there ya go, its on your phone now" and when he says it does not work hand him a minni screw driver and a 1.6GHz Quad-core from the Galaxy Note II and tell him to simply upgrade the procssor in his phone because its too slow. lol.
    -good luck and enjoi

    Hi,
    This is very interesting.  I'm not an expert but i could do almost all the steps, but i can not do the sign step.  i dont know where my release.keystore is.  i created a .key.p12 file, is it?
    I'm trying to do this for a Galaxy SIII
    Thank you

  • Why can't I see my android app on google play on phone?

    I've built a native android app which works fine on a tablet, but I can't see it on a phone App Store, any idea why?

    After you test the .apk file, log in to the Google Play Developer Console (https://play.google.com/apps/publish/). From there, you can either unpublish the previous app and add the new app, or you can submit a new version (upload a new .apk binary) of the existing app. If you're updating the existing app, you might need to go back into Web App Builder and override the version number. Instructions for doing this are in the link Neil provided.

  • Android App - works fine in Device Central but not in phone

    Greetings!
    Just looking for some general "you might try this" tips.  I've built a very basic game app for Android so I can start learning not only how to develop for Android, but also how to publish and distribute Android apps to users.
    My game works fine when I test in Device Central from Flash.  And I've been able to upload my app to the Android Market. But when I install and run on my Android phone (I've actually tested on two separate devices), I just get a light yellow screen with a series of tiny dots that move across the screen, almost like a loading indicator, but nothing happens after that.
    I've tried publishing as both an Air (Air 2) file and a Flash (Flash 10) file.  In device central, I tested the app on a Droid Incredible emulation.  The devices I've tested on are an HTC Inspire (AT&T) and an HTC Thunderbolt (Verizon).
    So, I know there's no way for someone to take my limited description above and say "this is your problem".  Again, I'm just hoping for some general tips along the lines of "try publishing in a different version of Flash".
    Any suggestions for where I should start digging? 
    Thanks in advance!
    Joel

    Sign out of the store on your phone, then sign back in. Note having content from more than one country's store may complicate the process of updating apps and downloading past purchases.
    tt2

  • Adobe Connect Android app issue

    The app failed during job interview, simple chat wouldn't work, no official support available.
    Read report at expofair.tv/portfolio/brendaflinn.html. Report available Oct 4.
    Message was edited by: Ashish Gupta to make it more readable.

    On Android OS 4.1 - 4.3 (Jelly Bean) or older, Adobe Reader for Android version 11.2.x has a known defect in the "All PDFs" view. The All PDFs view does not show the files and folders on an external SD card. A workaround is to use the Folder View instead of the All PDFs view. We have fixed the defect and plan to include the fix in the next release of Reader for Android.
    On Android OS 4.4 (KitKat) only, neither All PDFs view nor Folder View shows any files or folders on an external SD card.  Reader cannot save any changes to the files on an external SD card, either.  We are still working on fixing the problems.  In the meantime, please copy the files from your external SD card to your device's internal storage (e.g. /storage/emulated/0/Documents/...) using a File Manager/Browser app or use a cloud storage service (Acrobat.com, Dropbox, Google Drive, etc.) to store files.
    Your case is the latter because your Samsung Galaxy S4 phone is running 4.4.2 (KitKat).
    Sorry for the inconvenience.

  • How do I change the Version Code in the Flash Android settings Android app market?

    I recently tried to update my app in the Android app market and when I uploaded it I got the following message:
    "The new apk's versionCode (1000000) already exists."
    In the Flash Adnroid settings I changed the version label but that did not help.
    So I have two questions:
    How do I change the Version code in the Flash Android settings? I changed the version number and version label but that did not work.
    What is the difference between the version number and version label?

    I tried that but it did not work. Apparently there is a difference between the version code and version number (which is set in the Android settings). From my research the version label is optional, so there are no problems there.
    This is the what the XML file says:
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <application xmlns="http://ns.adobe.com/air/application/2.6">
      <id>com.company.nameofapp</id>
    //Below is the correct version number, but has no relation to the version code.
      <versionNumber>1.1.0</versionNumber>
      <versionLabel>NewLayout</versionLabel>
      <filename>Name of app</filename>
      <description/>
    I did find this piece of information for Androin version codes. (http://developer.android.com/guide/publishing/versioning.html)  But I don't know how to place it into the xml file without conflicting with other code.
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.example.package.name"
          android:versionCode="2"
          android:versionName="1.1">
        <application android:icon="@drawable/icon" android:label="@string/app_name">
        </application>
    </manifest>
    Any other thoughts are much appreciated.

  • How do I change the Version Code in the Flash Android settings for the Android app Market?

    I recently tried to update my app in the Android app market and when I uploaded it I got the following message:
    "The new apk's versionCode (1000000) already exists."
    In the Flash Adnroid settings I changed the version label but that did not help.
    So I have two questions:
    How do I change the Version code in the Flash Android settings? I changed the version number and version label but that did not work.
    What is the difference between the version number and version label?

    I tried that but it did not work. Apparently there is a difference between the version code and version number (which is set in the Android settings). From my research the version label is optional, so there are no problems there.
    This is the what the XML file says:
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <application xmlns="http://ns.adobe.com/air/application/2.6">
      <id>com.company.nameofapp</id>
    //Below is the correct version number, but has no relation to the version code.
      <versionNumber>1.1.0</versionNumber>
      <versionLabel>NewLayout</versionLabel>
      <filename>Name of app</filename>
      <description/>
    I did find this piece of information for Androin version codes. (http://developer.android.com/guide/publishing/versioning.html)  But I don't know how to place it into the xml file without conflicting with other code.
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.example.package.name"
          android:versionCode="2"
          android:versionName="1.1">
        <application android:icon="@drawable/icon" android:label="@string/app_name">
        </application>
    </manifest>
    Any other thoughts are much appreciated.

  • PhoneGap Dreamweaver CS5.5 Android App Fail

    I am attempting the to create an Android app using Dreamweaver CS 5.5 and PhoneGap. The build always fails with the following message at the end of the error log:
    -dex:
         [echo] Converting compiled files and external libraries into C:\Users\ROG\Desktop\COMCOM~1.DEV\bin\classes.dex...
        [apply] Could not create the Java virtual machine.
        [apply] Error occurred during initialization of VM
        [apply] Could not reserve enough space for object heap
    BUILD FAILED
    F:\android-sdk\tools\ant\main_rules.xml:486: The following error occurred while executing this line:
    F:\android-sdk\tools\ant\main_rules.xml:203: apply returned: 1
    Total time: 2 seconds
    I was told by Adobe that this feature was not supported and that I needed to seek help here. I am running Windows 7 64 bit. I have the 64 bit version of 6.27 JDK installed and the latest Android SDK. I have successfullt created an app using PhoneGap directly through the command line. the Android SDK also doesn't like some of the config and build files created by Dw when I try to install the application files. It will still work, it just complains. I have also made sure that the emulator is up and running before running the build command in Dw.
    Any help would be appreciated.
    Thanks

    Today I follwed David Powers tutorial about creating an app by Phonegap from DW CS5_5.
    It is in the book: Studio Techniques. De iPhone app created worked as it should in the simulator. The Android version didn't show the map it should show in the emulator.
    Because creating the Android SDK by DW failed I installed it myself. Dw tried to install an linux version of Phonegap on my Mac. (Something the DW team should look after!). After installing and following David Powers instructions it worked as descripted above.
    It takes a little time to get used to the Android SDK and besides that it behaves terribly slow.
    I cannot help you any further but I want to let you what I experienced myself up to now.

  • Problem with Android app

    One article in my folio should show a pdf-file, there is the link to this file in Web content frame. In iOS everything works fine, but Android devices don't show the file! Can native Android apps show pdf-files in Web Content????
    And is it possible to show pdf-files in Android using another means?

    A common method to display PDF files in a folio is to add the PDF files to the HTMLResources.zip folder and link to it.
    Digital Publishing Suite Help | Hyperlink and button overlays

Maybe you are looking for