SDKBOX v1.4 released!

Hi Everyone,

We just released version 1.4.

This release adds plugins for

Playphone

Valuepotion

Appodeal

2 Likes

rating is great! :smile:
Please add this facebook invite friends support, this is the most important feature! I think many will agree with me…

Facebook invite feature will come in next release.

3 Likes

Awesome dudes!! Please, keep the good work!! :slight_smile:

I don’t have much to say

I love cocos2dx :smile:

1 Like

Thank you!! I was waiting for the Ratings & Review…

I’ve a question about the AppId for iOS, what is it exactly?

Thanks for the great update.
One question, would there be an updated plugins for the new iOS 9 from APPLE?

Thanks always

  • HJ

I believe coming on our Oct 14 maintenance release.

It seems that import facebook doesn’t work correctly because again modifying Application.mk by adding additional parameter for APP_PLATFORM := android-15

i hope SDKBox provides Admob services soon

1 Like

Perhaps at some point, but it isn’t on the Engineering schedule for this year.

1 Like

@slackmoehrle just as personal curiosity, why not Admob has a priority?
It’s less used nowadays in favor of others? Or some problem with google?

Latest Facebook plugin totally messed everything. The same working code before update does not work now.

Can you be more specific? Just saying it doesn’t work now isn’t quite helpful.

Can you run this sample: https://github.com/chukong/sdkbox-facebook-sample

@levis I don’t know. Perhaps it is because of the significant interest we have from other partners, wanting to work with us. Our goal with SDKBOX is to provide plugins to add features that make the best sense for our users. We want you all to monetize, gain insight into your users, etc. This all leads to everyone making more and more games with the Cocos2d-x engine.

@slackmoehrle ty for the answer! :wink:

Documentation regarding IAP not up to date:

Handling Purchase Events
This allows you to catch the IAP events so that you can perform operations based upon the response from your players and IAP servers.

Allow your class to extend sdkbox::IAPListener:
#include “PluginIAP/PluginIAP.h”
class MyClass : public sdkbox::IAPListener
{
private:
virtual void onSuccess(sdkbox::Product const& p) override;
virtual void onFailure(sdkbox::Product const& p, const std::string &msg)
override;
virtual void onCanceled(sdkbox::Product const& p) override;
virtual void onRestored(sdkbox::Product const& p) override;
virtual void onProductRequestSuccess(std::vectorsdkbox::Product const &products)
override;
virtual void onProductRequestFailure(const std::string &msg) override;
}

There should be more listner methods added

@energyy - ok, thank you for bringing it up.

I guess Facebook plugin uses app access tokens and they change with every single app install/uninstall. Is it possible to provide a token which doesn’t chang with new app installs?