Questions tagged [marmalade]

Questions related to Marmalade, a cross platform SDK, earlier known as Airplay SDK, developed by Ideaworks Game Studio, and later by GMO, and later stopped.

Marmalade was a cross platform SDK, earlier known as Airplay SDK, developed by Ideaworks Game Studio, and later by GMO.

Important Info:

  1. Marmalade has shutdown its SDK services in March 2017 to focus on in-house games. Read more about this at their official post.

  2. Ownership of the Marmalade SDK has been transferred to GMO, who now have full responsibility for its development and distribution: http://marmalade.shop/en/

  3. At some point between September 2017 and July 2018, GMO decided to stop further investment to Marmalade SDK. (source)

Tutorials:

http://www.drmop.com/index.php/marmalade-sdk/marmalade-sdk-tutorials/

246 questions
0
votes
1 answer

Sending picture request to facebook ( Marmalade c++ ) failed response

Well after a lot of researching and hitting my head in the wall a few times i came up almost ending my code. I am being able to connect to facebook and even send message requests but im not being able to send picture ones. Here is the code: …
user3481379
  • 11
  • 1
  • 6
0
votes
2 answers

Marmalade iOS multiple architectures support

The instruction for building marmalade extension static lib-wrappers from the official site shows how to build only single architecture (armv6) extension. I tried to include many architectures into the project: if {{defined I3D_OS_IPHONE}} { …
0
votes
1 answer

Implementing ads with both Marmalade and Cocos2d-x

I've been working for a month and a bit on a game, using cocos2d-x on the marmalade platform. Finding information about on the internet has been a frustrating experience due to its rarity, but that issue is amplified tenfold when cocos2d-x is…
Tom
  • 6,946
  • 2
  • 47
  • 63
0
votes
1 answer

Inputing áã and string getting A£A$ in c++ how to handle this?

I am trying to use this kind of characters in my code but i am not being able to handle it. My partner said i should use this: wstring wmessage(message.begin(), message.end()); textNotify->setText(wmessage); But textNotify is a textActor so i don't…
user3481379
  • 11
  • 1
  • 6
0
votes
2 answers

How to catch exceptions (gcc arm c++)

I use marmalade sdk and there is no support for structured exceptions handling. I need to catch any exception (null pointer, devision by zero or any else) and do some actions before app will crashed (send crash report). How can I do this in native…
user3463684
  • 1
  • 1
  • 1
0
votes
1 answer

marmalade hook for didReceiveRemoteNotification and didFinishLaunchingWithOptions

I have a marmalade project and running it for iOS. In case of traditional iOS flow when a user clicks on a notifications the following is called didFinishLaunchingWithOptions and launchOptions has the notification data that I can use. But in case…
Anand
  • 4,182
  • 6
  • 42
  • 54
0
votes
1 answer

Urban Airship with marmalade SDK

I`m trying to integrate Urban Airship in my application. Some error happened during UAirship:takeOff. I wrote to FAQ, but nobody answered me. I `m using the following code: NSLog(@"Starting airship..."); UAConfig *config = [UAConfig…
0
votes
2 answers

IwNUI CTextFieldPtr to string

I'm using a IwNUI CTextFieldPtr control and I would like to store/use the text attribute stored on the object in a string variable. I need to use that string but I have no clue on the documentation or examples on how to do it... I don't have a…
chaotive
  • 182
  • 14
0
votes
2 answers

Cannot create APK file using Marmalade

I'm using VS2012 and I'm trying to build my application for Android, but APK file is not created when I build the application. I'm doing this process using the Marmalade Hub and the "Package, Install and Run" option. Build process works fine and I…
chaotive
  • 182
  • 14
0
votes
2 answers

AlertDialog error using Marmalade IwNUI: Could not find resource named alertdialog

I'm developing an UI App and trying to use CAlertDialogPtr with IwNUI system. I'm getting an error that I cannot decipher, I have tried adding other libraries and systems and still no use. The error is: IwAssert failure (GX, 1339). Message: Could…
chaotive
  • 182
  • 14
0
votes
1 answer

Determine if Android APK leverages Marmalade SDK

Is there a way to determine if an Android App APK was created leveraging Marmalade (C++ SDK, Juice, Quick, or Web)? Will the android manifest have any activities or values that might indicate it leverages Marmalade? Will any files exist that give an…
user1707582
  • 87
  • 1
  • 7
0
votes
1 answer

Marmalade app: how to determine what memsize needed?

On my xperia ray app fails on start when memsize > 50mb (can't alloc so mush). But when memsize = 50mb, app can work around 5 mins, and then fails with message from marmalade, that not enough memory. So how can i find out how mush memory my app…
hoody
  • 343
  • 3
  • 12
0
votes
1 answer

How to get app url in Marmalade 6.3 like HandleOpenURL in Objective c?

We have a Game app developed in Marmalade 6.3 version. We got Xcode build for that using Mkb file and able to deploy it successfully on iPhone. We are launching this Game app from one another app developed in Xcode, and append some text like…
0
votes
1 answer

Polymorphism and serialisation with the Marmalade SDK

I have a problem with serialisation using the Marmalade SDK. I understand the principles like serialising primitives but what about polymorphic objects? According to the Marmalade examples you serialise objects like so: void Serialise() { uint8…
Binary Pulsar
  • 1,209
  • 10
  • 17
0
votes
2 answers

Collision with 2D Sprite Objects and the Math Involved

I'm new to the site and decided to make an account because I'm having problems grasping the concept of collision in a 2D environment. What I have is a set of road sprites from a top-down perspective, and I'm trying to set up rules for collision with…