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]

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>

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

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

  • 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

  • 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

  • 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

  • App is running on simulator but not in Playbook device

    Hi,
    I have developped an app that has been approved and it's present on app world.
    The app is running perfectly on the simulator but customers write reviews saying that they can't save data on the device and no error message is displayed.
    I have used AIR SDK and a SQLIte database.
    As I'm in Europe and Playbook is not available, I can't debug the app on a real device.
    Has anybody an idea about why the app work on the simulator but not on the real device.
    Thanks.

    Scocam - that's not a particularly helpful comment. A great deal of the apps in AppWorld have not been tested on the PlayBook yet as there ard a number of developers still waiting to receive their PlayBooks.
    If they live outside of North America then they have no other way of getting one except for waiting for RIM to ship them out. In the meantime, we use the simulators that RIM provide us and hope the apps behave the same on the real devices. This isn't always the case.
    But a great way to demonstrate your ignorance with an unhelpful pithy comment. Well done.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!

  • I have a bluetooth headset that only works in phone feature but not in itunes or apps on my iphone, please help

    I have a bluetooth headset that only works in phone feature but not in itunes or apps on my iphone, please help.
    It works fine through my macbook, can't find anything in settings on iphone to resolve problem

    The headset has to have A2DP capability, which most (I believe) do not.
    http://en.wikipedia.org/wiki/Bluetooth_profile

  • Classic - text ringtones work for one contact but not for others

    Just got the new Blackberry classic.  I'm having trouble with the ringtones for the text messages.  The custom ringtone works for one contact but not for the others.  I have taken the same custom ringtone that works for contact A and used it for contact B but it only works for A.  B sounds the default ringtone from the default profile instead of the custom ringtone.
    I have deleted all contacts and done a re-sync thinking something was corrupt.  That didn't work. 
    None of the contacts have a link. 
    I have changed the notification profile and it still doesn't work. 
    I have deleted a contact and recreated it manually.  It still doesn't work. 
    I finally deleted my dad's  contact and from the phone app created a new contact.  I set a custom ringtone for him and it worked.  I of course had to recreate all his other information manually.  Please tell me there is some other way to fix this than recreating manually all 147 contacts in my contact list.
    I read that if the phone number has the hypen or space it won't work, but my dad's contact info that I created from the phone app has the hypen and it rings with the custom ringtone.  Also contact A has no hypen in the phone number and it rings the custom ringtone.  So that didn't seem to matter. 
    I have spent hours on Google and see that lots of people have had this problem (but not everyone) but have not yet found a solution. 
    Surely someone has found a fix for this issue.

    Make sure that the contact has "Mobile" as the field for her number and not "iPhone".
    Note that the iPad cannot send SMS messages.

  • My iCloud password is working on iPhone 5s but not working on iPhone 6 anybody help

    My iCloud password is working on iPhone 5s but not working on iPhone 6 anybody help

    Tony,
    My first thought is to make sure that you are actually logged in using the same AppleID on both devices.  Many folks share one AppleID for their family's iTunes Store account yet use another personal AppleID to log into iMessage settings and iCloud settings.
    To confirm that the AppleID and password you are using is correct I would suggest visiting http://icloud.com and attempting to login there.  If you get in, then you know for sure that that is a valid AppleID/password pair.
    If that still doesn't reveal the issue then I would try opening Notes app on both iPhones, and then typing your password out where it can be seen clearly.  This may reveal if your are typing it differently due to iOS 8 changes in the shift key indicator, or possibly that a screen protector or case is causing your touches to not register the same on both devices.
    I hope these suggestions help.

  • Have Sony reader 505, ADE doesn't recognize when attached to mac OX 10.6.8. works with reader library but not with ADE

    Have Sony reader 505, ADE doesn't recognize when attached to mac OX 10.6.8. works with reader library but not with ADE

    YEAY!
    I just got the solution (that worked for me, anyway) from a Sony support rep. No PC or VMWare needed.
    OK, you've installed Sony eBook Library v3, and Adobe Digital editions, you've set up your acocunts and authorized your computer on both of them, and you've authorized your Reader with the Sony Library application.
    You go to the public library ebook download page, either through the Sony Library or just through a bookmark.
    You check out a book, and open it in Adobe Digital Editions, which still won't recognize your Reader.
    BUT, in the Sony Library app, you can now click "File, Import.." and go find the pdf you downloaded with the Adobe app.
    On my Mac, it was in ~/Documents/Digital Editions
    Import it, and drag it to your Reader.
    The first time you do this, it will ask you to authorize the Reader with your Adobe ID.
    Worked like a charm.

Maybe you are looking for

  • Can I have 2 iPhones with different Apple IDs link to the same Photo Stream?

    My husband and I use the same computer and Aperture program.  I set my iPhone up with the Photo Stream from Aperture with no problem but when he set his up, it didn't get the feed of pictures.  We have different apple ID's on our phones?  Can this be

  • How do I return to a previous time on my mac pro?

    How do I return to a previous time on my mac pro?  I accidently messed up my bookmarks and want to get them back the way they were just 2 days ago. Thank you

  • Wrong number of parameters error

    We are using jpub and sqlj in Solaris to generate Java Classes for our app. We also have a set of .sql scripts which in effect clone a schema. When we run jpub/sqlj against packages in the original schema, everything is fine, but against the clone, w

  • Updating to iTunes 7 - error:  files are missing

    After downloading an update to iTunes 7: When I click on iTunes, I get an error message which says: "iTunes cannot run because some of its required files are missing. Reinstall iTunes." If I reinstall from the beginning, will I lose all the hundreds

  • E540 HELP PLS(info) with drivers, cycle count and battery also need tips

    I buy my laptop mainly to play games. E540 20C600AAUS . Do the E540 come with a preinstalled graphic card? The games i plan to play with this laptop and requirements r: hope i can edit this after, should i post link or copy n paste requirements for g