Dual orientation android app

hello i have a question , im finishing an app with dual orientation folios, i just read this in the adobe help page >
The viewer prefers portrait over landscape (the library is always shown in portrait, and dual-orientation folios open as portrait and cannot be rotated to display landscape layout).
what does it means? my app will only work in portrait orientation?
thanks

I agree with you 75% (more or less).
If you have just one content to deliver, dual orientation sucks. Make it either portrait or landscape and stick to that. But there are cases when you get extra opportunities using dual orientation. You can tell different story in each mode, or you can complement main mode with enhanced user experience in other orientation. Most common case would be text rich main portrait mode with media and picture galleries in landscape.
I've once made an app about famous philosopher meeting also famous sculptor to discuss the universe, art, life, and humanity. Their dialogue flows in portrait mode, while in landscape user can immerse in contemplating the related art and pictures. The articles correspond to milestones of their discussion, so there is a clear link between each respective portrait and landscape layout, altough the number of h and v pages is usually different.
I can think of other reasons to use both orientations...

Similar Messages

  • Dual Orientation conundrum

    My client wants to simply repurpose an existing print magazine into dual orientation folios, so that it's single page in vertical orientation and 'spread view' when turned horizontal. Problem I've run into is that there are half the number of 'pages' in the horizontal orientation (since it's in spreads), so there ends up being no correlation when switching back and forth from vertical to horizontal views.
    Help!! I know it's possible since they already have a multiple edition app (created by their print house) that works as expected.

    You obviously have not tried it yourself and have no idea what you are talking about.
    An example:
    Folio article / print spread 1:
    landscape view: left page and right page of the print spread 1 together (1 page in Indesign)
    portrait view: left page and right page of the print spread 1 one after another. If you set "horizontal swipe only" in the article settings they even will be next to another. (2 pages in Indesign)
    Folio article / print spread 2:
    landscape view: left page and right page of the print spread 2 together (1 page in Indesign)
    portrait view: left page and right page of the print spread 2 one after another. (2 pages in Indesign)
    Folio article / print spread 3:
    landscape view: left page and right page of the print spread 3 together (1 page in Indesign)
    portrait view: left page and right page of the print spread 3 one after another. (2 pages in Indesign)
    Folio article / print spread 4:
    landscape view: left page and right page of the print spread 4 together (1 page in Indesign)
    portrait view: left page and right page of the print spread 4 one after another. (2 pages in Indesign)
    Folio article / print spread 5:
    landscape view: left page and right page of the print spread 5 together (1 page in Indesign)
    portrait view: left page and right page of the print spread 5 one after another. (2 pages in Indesign)
    Folio article / print spread 6:
    landscape view: left page and right page together (1 page in Indesign)
    portrait view: left page and right page of the print spread 6 one after another. (2 pages in Indesign)
    So if you are, like you were saying, reading the article that was on spread 6 in the print version and are changing to landscape from portrait … guess what? You will see spread 6 in landscape. And vice versa.
    The only minor problem that really exists is: if you are reading a right page in landscape and are changing to portrait, the device doesn't know where on the spread you were looking at and will start with the left 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.

  • 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 my phone's Android apps not work with normal ph data connection​s???

    After 10.3.1.1779 update my phone Q5 had facing lots prblms... at first I can't download anything from amazon app store with normal deta connection, 2nd android apps not work with normal mobile deta connection its always need wifi, 3rd mobile search engine not worked properly and also contact books always show no contacts after restarts it's fixed bt some time later it's starts again... and pls give update for facebook.... plssss plssss blackberry fix those problem.....

    Can I see your /var/log/Xorg.0.log through Pastebin?

  • 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.

  • Unable to scan using HP All-in-One Printer Remote android app.

    Hello,
    I am using Hp All-In-One Printer Remote android app,Print function works fine but scanning doesn't work neither from my phone (4.4 KitKat) or my tablet (jelly bean 4.1).
    scanning function works using my laptop (Windows 7)
    plz help.
    This question was solved.
    View Solution.

    Hi @EslamHassan
    Welcome to the HP Support Forums. I gather that you have a question regarding the HP All-in-One Printer Remote app.
    The LaserJet M127fw printer is not a supported printer for the HP AiO app. I have included the HP Printers and Supported Mobile Printing Solutions document for reference.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Custom UI Text in DPS in Android Apps

    Hi,
    Is there any documentation on how to customize the sign in button text for DPS Android apps like the one for iOS apps?
    Customizing UI text in DPS iOS apps
    Thanks!

    This feature isn't supported with the Android or Windows viewers.
    Neil

  • Native android apps - with DPS single edition?

    Can you build native android apps also with DPS single edition or only with enterprise edition?
    Thank you for you help!

    Thank you for your reply, Bob!
    I've forgotten to ask the most important thing: This also stays that way for DPS V30?
    Thank you!

  • [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.

  • AS3 is there an event for when Android app is exiting on it's own?

    Ok, I made an app for Android. And when we push the middle button or back(lefthandside) button of Android phone, we all know that Android apps still runs in the background.
    So my code is this:
    the first line(addEventListener) is in a private function which runs as soon as you open the app.
        NativeApplication.nativeApplication.addEventListener(flash.events.Event.EXITING, onMyAppExit)
        private function onMyAppExit(event:flash.events.Event):void{
          trace("onMyAppExit is running");
          saveProgress();
    Basically, I want saveProgress() to run when the app ACTUALLY exits from running in the background. I noticed that my app actually exits when I open another app like Candy Crush. I guess the Android OS exits apps automatically when the apps are not being used and when the app you are using takes a lot of RAM. However, my code only works when I run my app in AIR Debug Launcher(Mobile). I know that because I see the trace in the function in my output window when I click on the x button on the right corner of the app window. But when I connect my Android phone to the computer and then ---> AIR3.8 for Android settings ---> Publish, and then I "Begin Remote Debug Session", and on my Android phone, I open my app first, then open Candy Crush so that the Android OS automatically exits my app, I don't see the trace. So I finalized that the code didn't work on my phone.

    i tried this too. but doesn't work
    '(event:Event)'
    private function onMyAppExit(event:Event):void{
    and 'stage'
    stage.nativeApplication.addEventListener(Event.CLOSING,onMyAppExit);

  • 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

  • Is Flash Builder a good beginner program for creation of android app?

    Hi there,
    I'm planning to create a Android app and I'm searching for the right program to do so. I have absolutly no knowledge about programming, but happen to have Flash Builder as part of the Creative Suite CS6. As I need to learn everything from the complete beginning, I'd like to pick the best program for this purpose, so I don't learn a lot of stuff not be able to achieve the product I'd like. Let me give you a example of what I will try to achieve:
    Program for Android:
    - first page of the program would be a welcome page, it would be nice to be able to put a login and password option here, but that is not neceserry.
    - second page would be a list of 14 options - books - and by clicking on each option I would open a little book (cca 30 pages).
    - this option would be nice: let's say I open the third book and stop reading on page 10 and stop/close the program - the next time I open the program it would open the program on that very 10th page of the third book
    - this option would aslo be nice: some kind of searching modul to search keywords in the book.
    Is this kind of app possible to make in Adobe Flash Builder, or would it be better to learn another program? Thanks a lot for your experiences! Hedvertel

    If you have a licence for Master Collection you should have the info about what it contains.
    A few moments on Google took me here: http://www.ecostsoftware.com/adobe/adobe-creative-suite-cs6-master-collection-mac_p5565?gc lid=CNzN5MbKmLoCFXDJtAodWDoA3w
    The included software is listed. I don't think Muse existed when CS6 was originally released.
    I didn't properly read George's answer, but I don't see Muse as a great app builder.
    I kind of don't understand at all, why you even answer, if the only thing you are saying in this disucssion is that it's too ambitious and that I'm stupid even asking.
    Saying the project is overly-ambitious is a great answer to your question. In post 5 you clearly valued that answer enough as to be giving up on the project.
    I didn't say you were stupid asking these questions, it's more a case of asking questions you should be able to answer yourself without too much trouble.
    I still think that with your current level of understanding, takling this project with no experience of any programming or web technology is overly ambitious. Start small and build on that.
    You don't say why you want to do this particular project - whether it's about learning in general or that project in particular. If it's learning in general there's nothing to stop you - there are a ton of tutorials out there. If it's for this particular project only, I would stop now.
    You need to invest a significant amount of time to learn this stuff.
    Are you on some design course? Why do you have the master collection?

  • Video not working on the first run of Android app

    I couldn't find any results regarding this problem. Maybe I'm just using wrong keywords as it is difficult to explain.
    Has anyone else encountered that video is not working on the first run of Android app? By first run I mean directly after installing. I'm using NetConnection, NetStream, Video objects and GPU renderMode. By working I mean it's not showing and can't hear the audio. I haven't yet debugged deeper so I don't know if the problem is actually related to the code loading the video.
    I've encountered the following issues, which may or may not be related, regarding the the first run and Video object:
    - The first run takes about 20 seconds to start. After that, the start is pretty much instant. If you clear app's cache, it again takes the 20 seconds to launch. The video works after clearing app's cache.
    - When creating the first Video object, the app flashes screen to black for a few frames. This is why I create a dummy Video object in the beginning.
    I use AIR 13, going to upgrade to 14, but I'm quite sure this problem and the issues have been for a while.

    I should add that we're using flv, not mp4. And they're progressively downloaded, not local.

  • 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.

Maybe you are looking for

  • My display has gotten too big for the screen!  How to fix?

    This is really strange. The tab bar at the top and the dock at the bottom don't both fit on the screen anymore. And when I move the mouse the whole screen shifts until it rests at its topmost or bottommost position. Same with left/right. There's abou

  • Reoprt to see the invoice as per the status

    HI All, What is the standard report / Program that excute when we  display the invoices as per the status? Thanks in Advance Snehal

  • Need Help With LR 1.3.1 & HP7160 Printer - Printer Link Broken

    I followed LeeJays advice to someone else and deleted the preferences folder. This did not restore printing. XP & SP2. The printing gradually stopped with 1.3.1. The colors/brightness were all wrong. A few days later I can't print at all. By watching

  • EJB migration from an existing jar

    Hi, I have a jar containing my ejbs with descriptors(jboss/weblogic). I have created an enterprise application project in NWDS. Is there any way i can directly put this ejb jar into ear project without using migration plugin. I will change the descri

  • Out put type for simple mail

    Hi Sd Gurus              i change the output type  medium from printout to simple-mail. i got a error( Mail partner not found or empty! Obj created without partner!). please give the solution.    Thanks