1

I don't really understand what is the utility of this operation:

soomla::CCStoreController::sharedStoreController()->storeOpening();

In the documentation it is said this should be called when you want to show the storefront, but I'm coding my own storefront.

Thanks in advance.

RubenVot
  • 188
  • 10

2 Answers2

1

storeOpening() and storeClosing() methods are just for create and delete Store instance for platform API's. If you are creating Store Layer then just call them in onEnter() and onExit() methods respectively.

Vikas Patidar
  • 42,865
  • 22
  • 93
  • 106
1

We have removed those functions. You don't need to call storeOpening() and storeClosing() anymore.

If you're on Android AND you have your own storefront, you should call startIabServiceInBg() and stopIabServiceInBg() when you open and close your storefront. You don't have to do that though.

refaelos
  • 7,927
  • 7
  • 36
  • 55
  • 1
    I just was seeing the 4.1.2 tag from yesterday right now and reading the comments about it! Thank you! – RubenVot Jan 09 '14 at 11:04