Rable's Recent Forum Activity

  • I'm having the same kind of problems with Admob : nothing shows up. I checked the requests in my admob page and they are 0.

    My simplified code is :

    Start of layout : preload banner ad

    Trigger once : Wait 1.5 second then show banner ad

    not working

    If I understand correctly what has been said in this thread, I should see something if I export with XDK then instal the APK on my device without passing by Google Play Store, right?

  • My app is now released in one territory and the ads still aren't working (using Intel XDK)...

    I followed every step on this link : https://www.scirra.com/manual/184/admob

    And nothing appear on screen (even not an empty banner... nothing at all)

    Is there any step that should be made and isn't included in the manual?

    Anyone else is having problem with Admob integration?

  • Up to now, I have the exact same problems as hazneliel. AndI've been struggling with this problem for the last 2 months and still no solution.

    I just tried a new cranberrygame IAP plugin / XDK export, and as hazneliel describes, I got "store listing failed" everytime in Sandbox environment.

    The next thing to try is follow this tutorial :

    https://www.scirra.com/tutorials/1353/h ... lkphonegap

    Which seems quite in-depth.

  • Thanks again for the help. I already reduced the memory usage by splitting one layout into two (was using container layout already).

    Now I've got a question about music.

    For some reason, on an iPad, music only starts when touching the screen once the layout has started. This cause massive music problems in Healer Quest, and it happens when exported both with XDK and Phonegap Build. FYI there is no such music problems on android, and I think it's correct on iPhones, too (problem iPad only AFAIK, experienced on iPad Air 2 and iPad Mini 2).

    To counter this, the only solution I found was to add the music into the sound folder, and here is my question : Does making this increases the memory usage even if the music is not played?

    Another question : Is there any "clean" way to play music correctly on the iPad?

    Thanks!

  • i think that "container layout" is not good idea ...

    Why not? Could you please develop your thoughts?

  • Thanks for the info about memory use. Very useful!

    : I don't really know about what Phonegap Build is using. Do you mean XDK should be better? I will keep your tips in mind for my next game but here I need to find efficient ways to reduce memory usage on a finished game.

    I have another new element to share : I'm using a "container" layout in my game that contains most graphical elemens of the game in it, and is never played.

    The idea is that, as I have only one layout for every fight of the game, put all the enemies' images on the "game" layout will make it quite heavy. So I have them on an unused layout and only create the images I need at the beginning of each level. Is there any drawback to this method that I'm unaware of?

    I just moved one of my images from my game layout to the container layout, and the "memory use" moved up from 298 Mb to 300 Mb, so I guess this memory use is for the "container" layout? But as this layout is never played, the memory usage displayed in the editor is probably not relevant, isn't it?

    If I'm guessing right, it's the number inside the debugger which gives a clear indication of memory use (images only), which in the case of Healer Quest can go up to 120 Mb.

    Another question : I have many big, invisible, flat-colored squares that I use as collision boxes in the game. Their weight is about 200 bytes each in my image folder. But do they use big part of the memory too?

    Is partial transparency (i.e. 20% opacity) taking more memory than 0% or 100% transparency images?

    At least I now see what I can do to reduce memory usage, so thanks a lot for all the very useful advices. And splitting my big layout into 2 parts (game+map) already seems to limit memory usage in game to around 90-100 Mb maximum.

  • Oh, I actually forgot something important! This test was done on my PC, using the uncompressed images, but each time I export Healer Quest, I replace all the images with their compressed version in the image folder. I think the image folder's size drops from 50+ Mb to 16 Mb! So the actual memory usage is probably less than what is displayed in the editor and debug mode. So it should be still better than what I told in my previous post.

    Still, the game crashes a lot !

    Thanks Ashley, I remember reading this post a few month ago, but I'll read it again.

    EDIT : Have read it and it contains the info I was looking for :

    "In Construct 2, images are loaded layout-by-layout. This means when a layout starts, every object on the layout is loaded in to memory immediately. This is to avoid mid-game pauses as textures are loaded on the fly. When the layout ends, it will free all the images in memory not used by the next layout, and load any new images the next layout uses."

    So I'll definitely try to put my map on a separate layout if possible.

  • TiAm I'm unaware of what a footprint is (sorry). But I guess it's what Ashley is asking for in his reply?

    Ashley The C2 editor tells me "Memory use : 298.2 mb"

    When playing the game in Debug mode, memory usage (images) goes sometimes higher than 100Mb. Sometimes even higher than 120Mb if the player wanders on the map...

    From what I experienced, on an iPad mini 2, the game seems to crash as soon as the memory use is above 100Mb, which is quite problematic.

    What I noticed is that even if I delete the objects, they are not erased from memory. Actually the game only refreshes memory when changing layout.

    Is there any way to refresh memory other than changing layout?

    Otherwise, separating the map on a different layout seem to be mandatory.

    Any other tip?

    Thanks a lot!

  • Hi,

    My mobile game runs nicely on Android (not many crashes), but on iOS, especially when exported with Phonegap Build, I have too many crashes! Even on an iPad Mini 2. Is there any precise tips to try to reduce the number of crashes? Should I delete as many images as possible, or should I rather try to deactivate as many event groups as possible, or something else?

    I found this thread on the topic, with a reply by Ashley :

    Crashes (as in the app exits) are usually caused by buggy graphics drivers, or running out of memory. In rare cases it may be a browser bug, but the first two causes are far more likely. There's not much you can do about buggy drivers; most mobile platforms don't allow updates outside of updating the entire OS, which is subject to the carrier/manufacturer approving the update.

    If there's a bug in the C2 engine then if the JS code goes wrong it probably won't crash the app. It will probably freeze instead, since the browser engine catches the JS error, halts the script, and then continues running the page. That's useful in web pages but since the C2 engine is all JS then the game logic halts freezing the game then the last frame remains on-screen. If that happens then ideally you'd be able to reproduce it and report it as a bug to us so we can fix it.

    My problem is probably memory, as my game runs mostly on only one layout.

    Thanks!

  • Yup, I've been able to make it work after a lot of retries/errors. In the root folder, I added the following icons (with right sizes)

    icon-16.png

    icon-32.png

    icon-57.png

    icon-76.png

    icon-114.png

    icon-120.png

    icon-128.png

    icon-152.png

    icon-256.png

    icon.png (size 57x57 px)

    and in the XML file, I pasted the following code :

    <icon src="icon.png" gap:platform="ios" width="57" height="57" />

    <icon src="icon-128.png" width="128" height="128" />

    <icon src="icon-256.png" width="256" height="256" gap:role="default" />

    <icon src="icon-57.png" gap:platform="ios" width="57" height="57" />

    <icon src="icon-120.png" gap:platform="ios" width="120" height="120" />

    <icon src="icon-152.png" gap:platform="ios" width="152" height="152" />

    <icon src="icon-114.png" gap:platform="ios" width="114" height="114" />

    <icon src="icon-76.png" gap:platform="ios" width="76" height="76" />

    I guess everything is not mandatory, but at least, it works for me!

    I hope it will work for you too!

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Thanks guys, I'll try XDK one more time.

    volkiller730 What's weird is that I tried XDK (iOS export) + Cranberry game plugin, got approved (the true approval), released the game in Belgium only for a few hours to test if IAP were working... And they weren't. I got "Store Listing Failed" every time I requested it. And the code was exactly the same than on Android (which was working fine).

    It seems that by now XDK export supports Construct2 IAP plugin too, so that's something else to try.

    Other random problems I had with XDK export to iOS are landscape mode not locking (I think there is a plugin for that) and music launching only after a click on iPad Air 2 (but I guess putting all music inside the sound folder should do the trick).

  • I have the same kind of experience as you. Healer Quest works perfectly on Android (IAP + Leaderboards and achievements), but I'm still litterally STRUGGLING with iOS export. I first tried using Intel XDK (which I'm using for Android) but despite I had approval from Apple, the IAP weren't working.

    Then I tried exporting with Phonegap Build, but now my submission was refused (2 times) because of Game Center... And I still wasn't able to test the IAP using Phonegap Build. With 1-2 weeks between each submission, it takes a lot of time, and I've been unable to use sandbox mode successfully up to now to test IAP without receiving official approval.

    From my experience, it's impossible to get help on export to iOS problems on this forum. Most of my post on the subject either have received no reply, or unuseful onces. My guess is that most people simply don't know how to do it. I also haven't been able to find a recent tutorial about how to export to iOS with IAP working, while they are dozen of Android tutorials + the very active Intel XDK Crosswalk experiences thread. Guys from Intel are always ready to help, which makes exporting with XDK much easier.

    I'll tell you when my game will be successfully exported to iOS, and will try to explain how I managed to do it (if it happens ^^').

    Good luck !

Rable's avatar

Rable

Member since 6 Aug, 2014

None one is following Rable yet!

Connect with Rable

Trophy Case

  • 10-Year Club
  • Forum Contributor Made 100 posts in the forums
  • Forum Patron Made 500 posts in the forums
  • Regular Visitor Visited Construct.net 7 days in a row
  • RTFM Read the fabulous manual
  • Email Verified

Progress

15/44
How to earn trophies