Problem with ADF Mobile on Android

Hi,
I'm trying to run a very simple test with adf mobile on android emulator.
But when I try to open the app, the splash screen never changes.
Only when I go to the menu and I return to the app from the device menu, this show the main screen.
And...
When I try to open a very simple amx page, the app launch a message that says
Failed to initilize the AdfcContext{classname: oracle.adfmf.framework.api.Model; method: pushPageFlowScope; params: ; }
Somebody can help me?
I am using:
ADF Mobile Framework oracle.adf.mobile 11.1.2.4
Android sdk 22
Message: http://db.tt/mIqcekCI
Log: http://db.tt/0frlguNq
Thanks!

Hi, there, a couple of things to double check on your emulator settings:
When configuring the Android emulator, please make sure the emulator emulates ARM Processor (armeabi - v7).  ADF Mobile only works with ARM processors - both device and emulator.
Under Memory Options, please ensure RAM is at least 768 or greater.  This of course is also constraint by the amount of memory your development machine has, but generally you should have at least 768 MB allocated.  ADF Mobile app itself won't take up nearly that much RAM of course, but there are a lot of Android apps that are started in the background when Android emulator starts.
Also, make sure there is 500 MB of internal storage configured - you can go as low as 200 MB but the space will quickly.
Lastly, before you compile/deploy again, please go to JDeveloper menu item Build - Clean All to clean up any left over deployment artifacts.
Thanks,
Joe Huang

Similar Messages

  • Problem with Vikings Mobile number (Poland)

    [Topic title updated by moderator to be more descriptive. Original topic title was: "Problem with Vikings Mobile number"]
    Hello, I can't login Skype Qik for Windows Phone with Vikings Mobile country: Poland. Still getting msg wrong Phone number when try to login. On android i can login without any problems.

    Hi, can you specify the first 5 digits of the phone number? For example +48 xxx
    Добавляйте баллы, если моё сообщение вам помогло. Спасибо!
    Возврат денег | Система обновления подписок | Заблокировали/взломали аккаунт? | Пропали контакты? | Не зайти в Skype/не добавляются контакты? | Не удалось загрузить базу данных?
    Подписки | Цены

  • Yes another user with problem with Apple Mobile Device Support, I am getting the error message: Service 'Apple Mobile Device'(Apple Mobile Device) failed to start. Vertify that you have sufficient privileges to start system service....

    Yes another user with problem with Apple Mobile Device Support, I am getting the error message: Service 'Apple Mobile Device'(Apple Mobile Device) failed to start. Vertify that you have sufficient privileges to start system service....I hit retry and it came up again. I hit ignore and it prompted me to hit finish so Itunes can open.   I looked thru alot of these posts on here to try and resolve this problem myself but it's not working too well...I downloaded Itunes to my desktop so I can right click it with the program i downloaded called WinRAR. I extracted it and then went into the folder called Itunes64setup. I saw the file called AppleMobileDeviceSupport64 in there so I began to try and download it on it's own. Well that didn't work as I planned and got this error message:
    Apple Mobile Device Support wasn't installed on your computer. The installer encountered errors before Apple Mobile Device Support could be configured. Your system has not been modified. To retry these operations at a later time,please run the installer again.
    Well I tried to run it again and came up with the same message...I see that some people got great support to help them so I am hoping someone can help me as well. I know "b nor" is very qualfied and hopefully can help me! Please advise what I can do. Thank you

    Hi Iss9243,
    Welcome to the Support Communities!
    You've already tried some great troubleshooting steps, but the article below gives you quite a few more for this issue.  Hope it helps ....
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    - Judy

  • Unable to load ADF Mobile for Android deployment profile.

    Hello,
    I'm trying to implement a simple application on an android platform using this:
    [http://docs.oracle.com/cd/E18941_01/tutorials/MobileTutorial/jdtut_11r2_54_2.html]
    I already downloaded the updates needed as extensions and started the emulator using the SDK Manager.exe. However, i'm not able to create a deployment profile of type: "ADF Mobile for android". I only find type "ADF Mobile Feature Archive" which doesn't work for me because when i try deploying it, i don't find the "deploy application to emulator" option. Any thoughts?
    Regards,
    Mohamed

    Hi.
    To deploy to the emulator or to a device, you must create a deployment profile on your application, not on the ViewController or ApplicationController projects.
    Best Regards,
    Frédéric.

  • Problem with ADF Table and doDML method.

    HI,
    I have a problem with ADF Trinidad Table. I have one search form and which i click on search button the result is coming it's working fine, And when i click on CreateInsert button to insert a new row it's adding after entering all the data into the table when i click on button on the page i am getting error like
    Messages for this page are listed below.
    Error     
    Missing mandatory attributes for a row with key oracle.jbo.Key[1 ] of type AppModule.CmSubscribersView1
    Error     
    Attribute Name in AppModule.CmSubscribersView1 is required
    Error     
    Attribute CreatedBy in AppModule.CmSubscribersView1 is required
    Error     
    Attribute CreationDate in AppModule.CmSubscribersView1 is required
    Here Created By and Creation Date are not available in the table i need to set these data from back end for that i have used doDML() method in the entity object and i written the logic but this method not even invoking as i couldn't able to see the logs in the server.
    protected void doDML(int operation, TransactionEvent e) {
    super.doDML(operation, e);
    System.out.println("^^^^^^^^^^^^^^^^66666Inside entity object^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ");
    // AppModuleImpl am=new AppModuleImpl();
    // Number userID= am.getUserId();
    //System.out.println("User id in the Entity Object Is: "+userID);
    oracle.jbo.domain.Date dt = new Date();
    if(operation ==DML_INSERT){
    EntityDefImpl cmSubscribers=CmSubscribersImpl.getDefinitionObject();
    CmSubscribersImpl newSubscribers=(CmSubscribersImpl)cmSubscribers.createInstance2(getDBTransaction(),null);
    Number n=new Number(1599);
    newSubscribers.setCreatedBy(n);
    newSubscribers.setCreationDate(dt);
    newSubscribers.setLastUpdateDate(dt);
    newSubscribers.setLastUpdatedBy(n);
    But still the same problem can any one help me inthis.
    Regards,
    Edited by: user5802014 on Aug 21, 2009 2:04 PM

    Hi,
    Modify your method to call super.doDML() after initialization of mandatory attributes as below:
    protected void doDML(int operation, TransactionEvent e) {
         oracle.jbo.domain.Date dt = new Date();
         if(operation ==DML_INSERT){
              //PRE-INSERT code begins     
           EntityDefImpl cmSubscribers=CmSubscribersImpl.getDefinitionObject();
           CmSubscribersImpl newSubscribers=(CmSubscribersImpl)cmSubscribers.createInstance2(getDBTransaction(),null);
           Number n=new Number(1599);
           newSubscribers.setCreatedBy(n);
           newSubscribers.setCreationDate(dt);
           newSubscribers.setLastUpdateDate(dt);
           newSubscribers.setLastUpdatedBy(n);
           //PRE-INSERT code ends
           super.doDML(operation, e);
           //POST-INSERT code if any
         }else
            super.doDML(operation, e);
    }Sireesha

  • TS1567 i have uninstalled then reinstalled itunes to solve a problem with apple mobile device, but i get this message during the install. Service  Apple Mobile Device  failed to start. Verify that you have sufficent priveleges to start system services.

    I Have reinstalled itunes to solve a problem with Apple mobile support, but during install i get this message. Service 'Apple Mobile, ( Apple Mobile Device ) failed to start. Verify that you have sufficent privileges to start system services. I'd appreciate any help on this.
    Thanks bluebanana 66

    Hi bluebanana 66,
    Thanks for visiting Apple Support Communities.
    There are a few reasons why you might receive this message after installing iTunes. You may need to verify that iTunes has been completely removed before trying to install again. See this article for the steps to completely remove and reinstall iTunes:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/ht1923
    If the error message persists, see the "Additional troubleshooting" section of this article for some steps that can help solve it:
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/ht1926
    Best,
    Jeremy

  • Migration Jdev 11.1.1.1 to Jdev 1.1.2, IDE visual problems with ADF design

    Migration Jdev 11.1.1.1 to Jdev 1.1.2, IDE visual problems with ADF design
    CONTEXT
    I’ve been working my project with Jdev11.1.1.1, when I migrate to JDev 11.1.1.2. I realized that my project didn’t compile successfully as before besides I couldn’t see the design view in a WYSIWYG mode on my JSF pages.
    I had installed (initially) in C:\oracle\Middleware Jdev 11.1.1.1 with WLS 10.3 (default in Installer)
    A couple days ago I realized about the new Jdev release JDev 11.1.1.2 and I decided to migrate because of the IDE improvements such as Bugs Solutions, Maven support, code templates, etc).
    The new version seemed to be non-compatible with WLS 10.3 because I couldn’t mount it in the same middleware so I installed the new one in C:\oracle\Middleware11g2, JDev 11.1.1.2 with WLS 10.3.1 (default in Installer).
    EXAMPLE
    I have created a new sample Project named JDev112App, it only has 1 java class, 1 ADF template and 1 JSPx to show the errors and differences between releases of the IDE… However, I also have added the screenshots of the Project in each IDE, also I have included a screenshot of my real project (Business App).
    NOTE. Business APP project is under subversion SVN and the migration was done successfully when JDEv 11.1.1.2 opened it (it migrated automatically).
    What should I do?? .. thanks
    Best Regards,
    Screenshot1
    http://comunidadoraclehispana.ning.com/forum/attachment/download?id=2315969%3AUploadedFi38%3A15778
    Screenshot2
    http://comunidadoraclehispana.ning.com/forum/attachment/download?id=2315969%3AUploadedFi38%3A15779
    Example APP
    http://comunidadoraclehispana.ning.com/forum/attachment/download?id=2315969%3AUploadedFi38%3A15784

    I think that the problem could be preferences/settings migration from Jdev 11.1.1.1.0 to JDev 11.1.1.2.0, because I migrated not only the application but also the JDev preferences ( "Documents&Settings...Jdeveloper..." ).
    I have installed in a new machine without previous version of Jdev the new release JDev 11.1.1.2.0 and when I deploy my test application with errors ( showed in this post ), it works fine and also the design view is correct.
    I am not SURE but I think the bug or problem could be also the preference/settings migration between JdeveloperS.
    Can anybody tell me the real reason?? How can I fix it ... I don’t want to import each of my settings manually in JDev 11.1.1.2.0 ( I mean templates, javadocs settings, connections, repositories, etc).
    Thanks in advance for your help,

  • I'm having problems with my mobile internet connection

    I'm having problems with my mobile internet connection. Wifi works fine. It seems like my connection get lost every tuesday and friday between 11 and 12 am local time (guess it would be between 2 and 3 am Los angeles time for example). The connection won't comeback by itself. I have to turn the phone, iPhone 4s iOS 5.0.1, off and back on again. The connection immediatly works fine after the restart and stays fine for days. I really don't know what to do. My provider doesn't seem to know either. Tried a lot of things, new settings, resets, I even got a new iPhone. Still the same problem however. Richt now I changes the time setting to see it the problem occurs at another time. Btw: the phone doesn't say "no service" and I can send sms messages and make phonecalls. The 3G symbol or the circular symbol is shown next to the name of the provider.
    Does somebody has an idea what this might be? Thanks a lot.

    Update. My carrier says the antenna of my iPhone 4s is not so good as the one in the iPhone 3G. They can't solve the problem. Their signal is too weak for the 4s at places I spend most of my time. Not the answer I expected, but I'm free to choose an other carrier. Hope this will help.
    This was not the correct answer, I accidentially clicked the button..
    Message was edited by: vasch

  • Problems with Vodafone Mobile Card (Huawei E220)

    I have a Vodafone Mobile Card with the latest firmaware and with the latest software on the Mac (the official software from Vodafone, kinda like launch2net) and all worked fine in Tiger, but now in Leopard, I did a clean install, installed the Vodafone software, it works fine the first time I use it and then, after unplugging, when I use it again it never works.
    The Vodafone Mobile Connect launches, accepts the password, measures the signal but when I tell it to activate, it just hangs and I have to force quit. Sometimes, after force quitting I can still do the normal connection (choosing modem and connecting) but this only works sometimes.
    Does anybody have this problem also? How can I fix it?

    I am experiencing a similar problem with Vodafone Mobile Connect 3G (Version 2.08.01.00), however, I am not running OS 10.5. The modem was working fine on both of my computers for about 3 weeks, but now it does not work on my Macbook while it continues to work on my old iMac. When I launch VMC it hangs before the activation window appears and I have to either force quit or it quits itself; no error message window appears. Both computers have the same recent software updates from Apple. I am going to do a clean install of the old software on the Macbook, but I am nervous that when I unplug the modem from my iMac, the same problem will occur on it and then I will be without a connection.
    I downloaded VMC software (in English) from here:
    http://www.business.vodafone.com

  • A problem with WAAS mobile client

    The customer has a problem with WAAS mobile client. When he disabled WAAS mobile client - all is working, but http is not working.:-( On the server the accelerated networks are configured.The browser send the http request, but the response is not received:-( For other clients it is working. Thank you for help.

    I have WAAS mobile server version 3.4.0.1460 on the Windows2003 server with SP1. Client OS is Windows XP. All clients who use WAAS mobile client have WinXP on their notebooks. All clients are on the same network. This client sees this problem when the waas client is active, disabled, and for now when the waas mobile client is uninstalled - it seems like waas mobile client changed registers for IE or FireFox - so all http answers are redirected to nonexisting waas mobile client:-(
    Thank you
    Roman

  • Deployment problem on ADF Mobile (Android Emulator)

    Good Day,
    I am using Jdeveloper 11.1.2.3.0
    I am getting a problem during the deployment of my app on Android Emulator. Here is the log:
    [01:54:56 PM] Updating Android profile dependencies with FAR profiles created from application projects...
    [01:54:56 PM] ----  Deployment started.  ----
    [01:54:56 PM] Target platform is  (Android).
    [01:54:56 PM] Beginning deployment of ADF Mobile application "FirstMobileApp" to Android using profile "TestProfile".
    [01:54:56 PM] Checking state of Android Debug Bridge server...
    [01:54:56 PM] Android Debug Bridge server already running.
    [01:55:00 PM] Verifying a single Android emulator is online and connected to the ADB server...
    [01:55:00 PM] Beginning deployment of ADF Mobile application "FirstMobileApp" to Android using profile "TestProfile".
    [01:55:00 PM] Running dependency analysis...
    [01:55:00 PM] Building...
    [01:55:00 PM] Deploying 3 profiles...
    [01:55:01 PM] Wrote Archive Module to C:\JDeveloper\mywork\FirstMobileApp\ApplicationController\deploy\ApplicationController.jar
    [01:55:01 PM] Wrote Archive Module to C:\JDeveloper\mywork\FirstMobileApp\ViewController\deploy\ViewController.jar
    [01:55:01 PM] Starting to prepare the packaging...
    [01:55:07 PM] Verifying Application Controller project exists...
    [01:55:07 PM] Verifying application dependencies...
    [01:55:07 PM] Validating application XML files...
    [01:55:07 PM] Validating XML files in project ApplicationController...
    [01:55:07 PM] Validating XML files in project ViewController...
    [01:55:08 PM] Copying FARs to the ADF Mobile Framework application...
    [01:55:08 PM] Copying FAR from source: ViewController...
    [01:55:08 PM] Copying FAR from source: ApplicationController...
    [01:55:08 PM] Copying framework java resource files...
    [01:55:24 PM] Copying common javascript files...
    [01:55:38 PM] Deploying skinning files...
    [01:55:38 PM] Copying application image files...
    [01:55:38 PM] Copying ADF Mobile configuration files...
    [01:55:38 PM] Copying .adf files...
    [01:55:38 PM] Copying security related files to the ADF Mobile Framework application...
    [01:55:38 PM] Creating Android preferences XML files...
    [01:55:39 PM] Creating AndroidManifest.xml file...
    [01:55:39 PM] Creating unsigned Android application file...
    [01:55:50 PM] Compiling Android Resource Identifier file...
    [01:55:52 PM] Creating Android classes.dex file from class files...
    [01:55:54 PM] Command-line executed: ["C:\Users\Nasir Amin\AppData\Local\Android\sdk1\platform-tools\dx.bat", --dex, --keep-classes, --output="C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\classes.dex", C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\classes, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\AND_ksoap.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\Container.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\IDMMobileSDK.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\logging_dalvik_release.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\phonegap.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\vmchannel_dalvik_release.jar]
    [01:55:54 PM] '"C:\Windows\system32\java.exe"' is not recognized as an internal or external command,
    [01:55:54 PM] operable program or batch file.
    [01:55:54 PM] Command-line execution failed (Return code: 1)
    [01:55:54 PM] Command-line executed:  "C:\Users\Nasir Amin\AppData\Local\Android\sdk1\platform-tools\dx.bat" --dex --keep-classes --output="C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\classes.dex" C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\classes C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\AND_ksoap.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\Container.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\IDMMobileSDK.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\logging_dalvik_release.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\phonegap.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\vmchannel_dalvik_release.jar
    [01:55:54 PM] Deployment cancelled.
    [01:55:54 PM] ----  Deployment incomplete  ----.
    [01:55:54 PM] Deployment failed due to one or more errors returned by 'C:\Users\Nasir Amin\AppData\Local\Android\sdk1\platform-tools\dx.bat'.  The following is a summary of the returned error(s):
    Command-line execution failed (Return code: 1)

    Dear aJohny,
    I am sorry for inconvenience, In fact I had to ask about solution of this problem. Its my bad I had pasted the wrong log. Here is the original problem, as I have updated the question also:
    [01:54:56 PM] Updating Android profile dependencies with FAR profiles created from application projects...
    [01:54:56 PM] ----  Deployment started.  ----
    [01:54:56 PM] Target platform is  (Android).
    [01:54:56 PM] Beginning deployment of ADF Mobile application "FirstMobileApp" to Android using profile "TestProfile".
    [01:54:56 PM] Checking state of Android Debug Bridge server...
    [01:54:56 PM] Android Debug Bridge server already running.
    [01:55:00 PM] Verifying a single Android emulator is online and connected to the ADB server...
    [01:55:00 PM] Beginning deployment of ADF Mobile application "FirstMobileApp" to Android using profile "TestProfile".
    [01:55:00 PM] Running dependency analysis...
    [01:55:00 PM] Building...
    [01:55:00 PM] Deploying 3 profiles...
    [01:55:01 PM] Wrote Archive Module to C:\JDeveloper\mywork\FirstMobileApp\ApplicationController\deploy\ApplicationController.jar
    [01:55:01 PM] Wrote Archive Module to C:\JDeveloper\mywork\FirstMobileApp\ViewController\deploy\ViewController.jar
    [01:55:01 PM] Starting to prepare the packaging...
    [01:55:07 PM] Verifying Application Controller project exists...
    [01:55:07 PM] Verifying application dependencies...
    [01:55:07 PM] Validating application XML files...
    [01:55:07 PM] Validating XML files in project ApplicationController...
    [01:55:07 PM] Validating XML files in project ViewController...
    [01:55:08 PM] Copying FARs to the ADF Mobile Framework application...
    [01:55:08 PM] Copying FAR from source: ViewController...
    [01:55:08 PM] Copying FAR from source: ApplicationController...
    [01:55:08 PM] Copying framework java resource files...
    [01:55:24 PM] Copying common javascript files...
    [01:55:38 PM] Deploying skinning files...
    [01:55:38 PM] Copying application image files...
    [01:55:38 PM] Copying ADF Mobile configuration files...
    [01:55:38 PM] Copying .adf files...
    [01:55:38 PM] Copying security related files to the ADF Mobile Framework application...
    [01:55:38 PM] Creating Android preferences XML files...
    [01:55:39 PM] Creating AndroidManifest.xml file...
    [01:55:39 PM] Creating unsigned Android application file...
    [01:55:50 PM] Compiling Android Resource Identifier file...
    [01:55:52 PM] Creating Android classes.dex file from class files...
    [01:55:54 PM] Command-line executed: ["C:\Users\Nasir Amin\AppData\Local\Android\sdk1\platform-tools\dx.bat", --dex, --keep-classes, --output="C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\classes.dex", C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\classes, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\AND_ksoap.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\Container.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\IDMMobileSDK.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\logging_dalvik_release.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\phonegap.jar, C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\vmchannel_dalvik_release.jar]
    [01:55:54 PM] '"C:\Windows\system32\java.exe"' is not recognized as an internal or external command,
    [01:55:54 PM] operable program or batch file.
    [01:55:54 PM] Command-line execution failed (Return code: 1)
    [01:55:54 PM] Command-line executed:  "C:\Users\Nasir Amin\AppData\Local\Android\sdk1\platform-tools\dx.bat" --dex --keep-classes --output="C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\classes.dex" C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\classes C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\AND_ksoap.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\Container.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\IDMMobileSDK.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\logging_dalvik_release.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\phonegap.jar C:\JDeveloper\mywork\FirstMobileApp\deploy\TestProfile\framework\build\jar\vmchannel_dalvik_release.jar
    [01:55:54 PM] Deployment cancelled.
    [01:55:54 PM] ----  Deployment incomplete  ----.
    [01:55:54 PM] Deployment failed due to one or more errors returned by 'C:\Users\Nasir Amin\AppData\Local\Android\sdk1\platform-tools\dx.bat'.  The following is a summary of the returned error(s):
    Command-line execution failed (Return code: 1)
    Sorry and Regards,
    Muddasar

  • ADF Mobile on Android? Offline synchronization with the database?

    Hello,
    We are thinking about developing a project on Oracle ADF Mobile, and want it to run on both Android and IOS devices.
    And we want to be able to synchronize our database for offline mode.
    I read some docs, and they say Oracle does not have an Android version of ADF Mobile Client. It provides ADF Mobile Browser,
    but then it will not be possible to be synchronized with a remote database and run in offline mode.
    Is it possible to develop an application with Oracle ADF Mobile technology, that runs on Android and IOS phones,
    syncs with a remote database and run both online and offline mode, and uses device's services like GPS, camera, etc?
    Thanks,
    Bora Yuret
    Edited by: 919404 on 07.Mar.2012 09:01
    Edited by: 919404 on 07.Mar.2012 09:02

    Trinidad faces and JSF faces not optimized for android web-browser.

  • Problem with HTML form on Android

    Hello,
    we are experiencing problems with quite simple HTML/Javascript form included in Adobe DPS publication on Android. It's working on iPad without problem, it's working on standard Android Chrome viewer, but when included in DPS publication, we can't write anything in the form.
    Does somebody encountered same problem and found solution? seems that this problem appeared on some newer version of Android, circa 4.3.
    Thanks
    Martin

    Hi, there, a couple of things to double check on your emulator settings:
    When configuring the Android emulator, please make sure the emulator emulates ARM Processor (armeabi - v7).  ADF Mobile only works with ARM processors - both device and emulator.
    Under Memory Options, please ensure RAM is at least 768 or greater.  This of course is also constraint by the amount of memory your development machine has, but generally you should have at least 768 MB allocated.  ADF Mobile app itself won't take up nearly that much RAM of course, but there are a lot of Android apps that are started in the background when Android emulator starts.
    Also, make sure there is 500 MB of internal storage configured - you can go as low as 200 MB but the space will quickly.
    Lastly, before you compile/deploy again, please go to JDeveloper menu item Build - Clean All to clean up any left over deployment artifacts.
    Thanks,
    Joe Huang

  • ADF mobile - trivial Android demo application takes 53 MB  ?!?

    Just developed and deployed application from
    http://docs.oracle.com/cd/E18941_01/tutorials/MobileTutorial/jdtut_11r2_54_2.html
    In the Android SDK emulator, I see that the such one trivial application has about 53.09 MB ?
    Is there a way to reduce the size of applications to a reasonable level?
    Some setting in deployment option, or similar ?
    Also, I have not yet tried it on a real Android device, but on the emulator application runs very slowly (never-ending Oracle splash screen on startup), on a computer with i7 processor with 8 GB RAM
    Thanks,...

    There is a minimum size that will be required (about 15mb) which is the ADF Mobile container which is where your application is executed on the client, and you won't be able to go below that one.
    Note though that this doesn't mean that a 2 page hello world would be 2*15 but rather a small addition to the first 15mb.

  • ADF Mobile Deployment & Android SDKit

    Hi folks,
      Quite few days ago, i go through the ADF mobile document. After a Big gap Again i gave a try to continue my learning in the topic of "Basics of ADF Mobile".
    Where I found oracle doc to start ADF Mobile with simple Oracle JDeveloper 11g Tutorials
    [11:25:53 AM] ----  Deployment started.  ----
    [11:25:53 AM] Target platform is  (Android).
    [11:25:53 AM] Beginning deployment of ADF Mobile application "Application2MobileApp" to Android using profile "Android2".
    [11:25:53 AM] Checking state of Android Debug Bridge server...
    [11:25:57 AM] Started Android Debug Bridge server.
    [11:25:57 AM] Verifying a single Android emulator is online and connected to the ADB server...
    [11:25:57 AM] Running dependency analysis...
    [11:25:57 AM] Building...
    [11:25:59 AM] Deploying 3 profiles...
    [11:25:59 AM] WARNING: No Resource Catalog enabled ADF components found to package
    [11:25:59 AM] Wrote Archive Module to C:\JDeveloper\mywork\Application2MobileApp\ViewController\deploy\ViewController_MobileFeatureArchive1.jar
    [11:26:00 AM] Wrote Archive Module to C:\JDeveloper\mywork\Application2MobileApp\ApplicationController\deploy\ApplicationController_MobileFeatureArchive1.jar
    [11:26:00 AM] Starting to prepare the packaging...
    [11:26:00 AM] Verifying existence of the .adf source directory of the ADF Mobile application...
    [11:26:00 AM] Verifying Application Controller project exists...
    [11:26:00 AM] Verifying application dependencies...
    [11:26:00 AM] Verifying project dependencies...
    [11:26:00 AM] Validating application XML files...
    [11:26:00 AM] Validating XML files in project ApplicationController...
    [11:26:00 AM] Validating XML files in project ViewController...
    [11:26:00 AM] Copying FARs to the ADF Mobile Framework application...
    [11:26:00 AM] Extracting Feature Archive file, "ApplicationController_MobileFeatureArchive1.jar" to deployment folder, "ApplicationController".
    [11:26:00 AM] Extracting Feature Archive file, "ViewController_MobileFeatureArchive1.jar" to deployment folder, "ViewController_MobileFeatureArchive1".
    [11:26:00 AM] Copying Android template...
    [11:26:37 AM] Copying framework resource files...
    [11:26:37 AM] Copying framework java resource files...
    [11:26:41 AM] Copying common javascript files...
    [11:27:16 AM] Deploying skinning files...
    [11:27:20 AM] Copying application image files...
    [11:27:20 AM] Copying ADF Mobile configuration files...
    [11:27:20 AM] Copying .adf files...
    [11:27:20 AM] Copying security related files to the ADF Mobile Framework application...
    [11:27:20 AM] Creating Android preferences XML files...
    [11:27:21 AM] Creating AndroidManifest.xml file...
    [11:27:21 AM] Creating Google Cloud Messaging intent service file GCMIntentService.java...
    [11:27:21 AM] Creating unsigned Android application file...
    [11:27:50 AM] Compiling Android Resource Identifier file...
    [11:27:52 AM] Creating Android classes.dex file from class files...
    [11:28:03 AM] Updating unsigned Android application file with DEX file and .adf content...
    [11:28:12 AM] Creating debug key store...
    [11:28:14 AM] Signing application...
    [11:28:24 AM] Deploying ADF Mobile Framework application to Android emulator (this may take a few minutes)...
    [11:34:30 AM] ADF Mobile Framework application successfully deployed to Android emulator.
    [11:34:30 AM] Shutting down Android Debug Bridge server...
    [11:34:30 AM] ****************************************************************************************
    [11:34:30 AM] This ADF Mobile app was deployed in Debug mode and should not
    [11:34:30 AM] be used for performance evaluation purposes.
    [11:34:30 AM] Set the deployment profile Build Mode option to Release for performance testing.
    [11:34:30 AM] ****************************************************************************************
    [11:34:30 AM] Elapsed time for deployment:  8 minutes, 37 seconds
    [11:34:30 AM] ----  Deployment finished.  ----
    After deployment i noticed that this simple Application hardly taking 10 minutes for me for deploying and document also produce the same.
    Android SDkit is seems to slow to see my deployed App
    Is there any possibility to improve the performance also those things.?
    See the 46 to 48 line Log says :"Something harmful"
    I followed the document as suggested i did int change anything. document also having the same.
    From my understanding i have to change mode while deploying. i also cross check that there is no mode options while creating the deployment profile
    please anyone tell me. what going on.
    Jdev 11.1.2.4.0
    Anderoid SDK Manager. Revision 22.2.1
    Thanks.

    Subramanian ,
    As mentioned in above post use release mode , not only does it reduce the deployment time to a few mins (from 10 mins as you specified) , but also reduces the archive size to a third.
    See more details on how to setup release mode alongwith setting up the keystore -
    https://blogs.oracle.com/shay/entry/speed_up_adf_mobile_deployment

Maybe you are looking for