Some games and apps work on nokia n8 but not on no...

i have a nokia c7 and i just went to the ovi store to download need for speed shift HD but it said that it was not available for my set but when i set the phone as n8 it said your phone is set
why? they both have same os and almost the same hardware with the 3d accelerometer and all
the RAM is same the graphic capeabilities of both phones are same thenwhy and this not only for this game for a number of apps

699taha wrote:
Hello did you try to download the game? CAN YOU DO THIS FOR ME PLEASE? just set your phone as n8 send the link of the game to your phone and try to download and then run it THANK YOU!!!!!!..... PLEASE TELL ME IF WORK OR NOT
Need for Speed Shift is now available in Ovi Store for C7. It is named NFS Shift instead, and unfortunately, it is not free.
IMO, Need for Speed Shift is free only for N8 was as a form of sales marketing technique to differentiate the product (N8, as an Nseries is suppose to be a flagship device anyway) from other Symbian^3 devices. I'm not sure why they can't launch paid version of NFS for C7 earlier, probably technical issue maybe. I wanted to buy but I bought GT Racing instead, since it is available from the beginning.
I faced similar issue that certain apps are available to N8 but not to C7, you can email Ovi support to ask them why, basically I forgot what they replied me lol.

Similar Messages

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

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

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

  • Html marquee : stop() and start() work on firefox 26 but not on 27

    this html/javascript line works on firefox 26 but not on firefox 27
    <marquee onMouseOver='this.stop();' OnMouseOut='this.start();'>Hello</marquee>
    Why ?

    Thanks of lot, it works !

  • Can't download some games and apps

    HEy guys i just bought ipad air past 2 weeks and indownloaded some games however some apps and games are not in my ipad like google chrome i can't even download it cause the 'GET+' is just white when i click it nothing happens

  • XNA app works on 8.1 but not 7.1

    Hello all,
       Weird happenings here, I have an xna game app that I rebuilt in visual studios 2013 ultimate edition and deployed it on windows phone 8.1 emulator with no issues, so it had worked on 7.1 and I assumed it still would, but when I submitted my
    app, it passed certification and then later today I got the email that it doesn't work with 7.1 devices, put the app in vs 2012 and sure enough it crashed on 7.1 devices, just wondering has anyone had this happen before and what would be the cause. The issue
    I am having is that I created custom content processors for some xml files and they are not being seen on 7.1 devices but they are being seen on the 8.1 devices......
    Any help is appreciated.
    Thanks
    Allen
    [email protected]

    Hi Allen,
    If I'm not misunderstanding, you mean that after rebuilding a WP7.1 project in Visual Studio 2013 Ultimate, this app will crash on WP7.1.
    >>The issue I am having is that I created custom content processors for some xml files and they are not being seen on 7.1 devices but they are being seen on the 8.1 devices
    Could you please clarify this issue?
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.
    Yes sir, that is exactly what I am saying.
    [email protected]

  • Apps work in one location but not another

    Some apps (iheartradio and tvguide) work fine from my home wifi, but not in another wifi area (at work, which has better wifi).  Other apps such as pandora work fine at both locations.  What is the difference and how can I get all apps to work everywhere?

    It's entirely possible that your employer has blocked certain ports on the corporate firewall, which will prevent some apps from working.

  • TS1253 i have airport extreme, and printer works with my imac, but not with my mac book pro??

    i tried setting up the printer under my wireless network only, and using the printer information, tried both and nothing works, my imac's same settings for the printer, and just cant get it to work.
    i am ussing airport extreme, and it shows printer conecting etc. but then it says not programed correctly and it fails.
    i dont know what else to try, i have followed every step on the manual, and nothing works..
    someone help me

    Could you open System Profiler on the iMac and the MBPro and select the Printers entry. Then in the top right pane you can select the printers entry and the bottom right pane will show information about your setup. Can you copy this information from both Mac's and paste back here.

  • Just updated to IOS 7.1.2, now some games and apps don't have sound.  What to do?

    I Updated to iOS 7.1.2 and some of my already installed apps and games don't have sound.  Some apps and games do have sound.  The sound was never adjusted on any of the games.  I tried deleting and reinstalling the ones with no sound and still no sound.  how can I resolve this issue?

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) http://support.apple.com/kb/ht1430
    Check your settings. The iPads have a small switch on the right edge. It can be used as a rotation lock to keep the screen from automatically reorienting itself as you move around, but you need to have the tablet’s settings configured properly. That same switch, right above the volume buttons, can also be set to function instead as a mute button to silence certain types of audio.
    If the switch is set to work as a mute button, you can change its purpose to “screen-rotation lock” by tapping the Settings icon on the home screen. On the Settings screen, tap General on the left side, and on the right side of the screen flick down to “Use Side Switch to.” Tap to select Lock Rotation or Mute to set the button’s function. Even if you set the side switch for your preferred use, you can still mute the Mini or lock the screen. Just double-click the Home button, and when the panel of apps appears along the bottom edge of the screen, flick the row from left to right with your finger. Tap the icon on the far left side of the row to either lock the iPad’s screen or mute the iPad’s alerts, notifications and sound effects. Music, podcasts and video are not muted unless you turn the volume all the way down.
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/ts5180
    iPhone: Can’t hear through the receiver or speakers
    http://support.apple.com/kb/ts1630
    http://www.atreks.com/app-no-sound-on-ipad-4-%E2%80%93-what-to-do/
    To solve some sound problems, just follow these simple steps
    1. Go to Settings
    2. Tap on General
    3. Tap on Reset
    4. Tap on Reset All Settings
    What this effectively does is to reset some of your Settings to factory default. It’s not a complete removal of settings. It removes all of your preferences for Wi-Fi, Bluetooth, Do No Disturb, Notifications, General, Sounds, Brightness & Wallpaper and Privacy. It doesn’t affect your data. All of your email accounts will remain intact, as well as any SMS text or iMessages.
     Cheers, Tom

  • Office Web Apps - working in other browsers but not Internet Explorer

    Hi there,
    I have office web apps on my SharePoint 2013 environment.  The previews work file when hovering next to a document but if I try to open it, I get "Sorry, we ran into a problem".  It looks as though Excel files open okay but I
    have tested Word and Powerpoint documents and I get this error.  Also, it only appears to happen in Internet Explorer - Google Chrome and Firefox are okay.  Any ideas?

    Thanks for the advice.  I installed the hoftix (on the OWA server) and now it appears to really be broken - nothing is opening using office web apps anymore.
    I found this blog with the same errors I am getting - I'm guessing I will need to uninstall etc. too?? 
    http://blogs.technet.com/b/dodeitte/archive/2013/03/29/issue-with-automatic-updates-enabled-amp-office-web-apps-server-2013-update.aspx

  • Upload files from my app works fine in JDev but NOT on app server???

    i guys,
    I'm using jdeve 10.1.2. and adf bc's. So here's my problem:
    In my application i need to allow for the upload of files from user's computers. This works perfectly fine from jdeveloper but when i deploy my application on the application server i get the following error:
    JBO-26041: Failed to post data to database during "Insert": SQL Statement "D:\TrademarkTestData\TrademarkunitTestData.xls (The system cannot find the path specified)".
    D:\TrademarkTestData\TrademarkunitTestData.xls (The system cannot find the path specified)
    For some reason the system cannot find the path. This is most frustrating as it works perfectly fine when run from jdeveloper.
    Any ideas would be most welcome.
    Thanks in advance,
    Newbe

    Hi Frank,
    Thanks for the response. I've consulted with our server guy and he says that there are no read/write privileges. Jdev is not on the server.
    I'm really stumped by this so if you have any ideas, I'd really appreciate it.
    Happr New Year to you,
    Newbe.

  • App working in preview/ADL but not working in .app

    Hi, so I've been testing my code with the preview in
    Dreamweaver and also using the ADL terminal command on my Mac at
    work and the app I've been coding works really well when testing
    through either of those two testing interfaces. But when I actually
    create the .air file and install it, my app just hangs at my
    loading screen. Is there anything specifically that would cause
    this? I can post the code if someon needs it.

    Could your app. write out a log file to find out exactly when
    it hangs?
    -ted

  • YouTube app works on iPhone 5 but not iPad Air. Keeps saying playback error. How can I fix this?

    youtube app and via Safari is refusing to work On my iPad air . Constantly getting a playback error......tap to retry. I've deleted it and reinstalled it, forced it to close down, turned ipad off but nothing has worked. however it's working perfectly on my iPhone 5!!!
    is there anything I have done wrong or a way to fix it?
    thankyou

    Update to iOS 7.1.1. Then bring it to an Apple Store if it isn't fixed.

  • I m using iPhone 6 64gb. one of the app works fine on wifi but not on 3g

    Snapchat doesn't work on 3g only on wifi. installed d latest update.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Using Google 2FA and app-specific password--can receive but not send

    I'm using Mail to check my Gmail account.  I use 2FA on my Google account and therefore use an app-specific password for Apple Mail.  I receive mail fine (although sometimes the message doesn't get pushed to Mail, it seems...maybe this is a different issue) but I can't send a message.  I get this error: 
    ...but I've already entered my app-specific password and there's nowhere to enter it.  The link in the error message is dead. 

    If you've activated 2-step verification, you need to generate an application-specific password in your Google account and enter it instead of the login password you use on the website.

  • Jdeveloper 9.0.3 Apps works well on 9iAS but not on 10g AS

    We have application built in Jdeveloper 9.0.3 it is working well on 9i AS R 2 but when we deploy it on 10 AS R1 it is deopled no error but all JSP function are giving error at run time
    pleas help

    JDeveloper 9.03 does not support 10g application server.
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/as_supportmatrix.html

Maybe you are looking for

  • Voice Call issues

    Hello, We have Exchange 2010 and Blackberry 5 in our environment. This query is for a single user(User A)only who is having exchange active sync and Blackberry. When users call him via Blackberry address book, the call lands to user B instead of User

  • Firefox and Utilities Won't Open

    Suddenly, Firefox stopped opening. When I try opening Utilities like Activity Monitor to see what's up and Disk Utility to repair permissions, they refused to open too. Other programs - Word, Safari, etc., open no problem. I also noticed that my GPU,

  • Mini's video calibration

    Is there any way to properly and accurately calibrate my HTPC Mac MIni's brightness and contrast? I've noticed the blacks are extremly dark and quite frankly "crushing" Plex can't seem to retain the selected settings, instead I need to adjust them fo

  • The touchpad is ineffective when my macbook pro 13 inches ( 2013 ) is connected on TV ,via HDMI

    The touchpad is uneffective when my macbook pro retina (2013) is connected on TV via HDMI. Why?

  • Does anyone know how to install mod_plsql into original Apache?

    Hi ALL! By some reasons I prefer not to use Apache from ORACLE in our business - so I would like to use Apache built from source. But how can I use mood_plsql to acces main server? Insatllation of mod_plsql and mod_ora_psql (downloaded by links from