Coder Social home page Coder Social logo

macsis / simstorekit Goto Github PK

View Code? Open in Web Editor NEW

This project forked from millenomi/simstorekit

0.0 2.0 0.0 64 KB

A simulated version of the iPhone's StoreKit, for testing store UIs on the iPhone Simulator, or even on device without having to set up IAP in Connect.

simstorekit's Introduction

Simulated StoreKit

The sources in this repository simulate Apple's StoreKit framework.

First of all, this code is available under the CC0 license (which, to be blunt, means it's public domain). Legalities:

CC0
To the extent possible under law, Emanuele Vulcano has waived all copyright and related or neighboring rights to Simulated StoreKit. This work is published from Italy.

There. Legalities are done. Let's get to it.

What does this do

This code reimplements the contract of Apple's StoreKit framework exactly, except that it prefixes all classes, protocols and constants with ILSim or kILSim (constants only). This can be used to test a IAP app in the simulator, for example, or to provide beta testers a IAP-based app without requiring them to have IAP test accounts or make purchases. Sky's the limit.

Additionally, the ILSimStoreKit.h header includes a set of preprocessor definitions that can be used to switch an app written for StoreKit (using SK… symbols) to SimStoreKit transparently.

How to use it

Write an app that uses StoreKit.

Where you would import StoreKit, replace:

#import <StoreKit/StoreKit.h>

with

#define ILSimReplaceRealStoreKit 1
#import "ILSimStoreKit.h"

Also make sure you compile all the .m files of SimStoreKit in your app, and that all .h files are on the headers path. (The easiest way is to simply drag them all into your project, but see the next section for caveats.)

The library needs to simulate the IAP server using a property list of products, which is set using environment variables (in Xcode, use Project > Edit Active Executable and look in the second tab to set them up). Env variables you can use and the expected format for the products list are documented at the top of ILSimSKPaymentQueue.h.

This is for testing only!

Do not ship apps containing this code! (Duh!) Currently, SimStoreKit does not have a way to remove itself from the build for release builds, so you'll have to make up something on your own (editing the implementation files to have a #if AllowSimStoreKit or other preprocessor tricks are probably the way to go).

simstorekit's People

Contributors

millenomi avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.