Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

In-app purchases promotion #179

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
a74a519
In-app purchase promotion (#1)
fluiddot Jun 13, 2018
806c57a
Update Readme.md
Jun 13, 2018
1b7b27b
Update Readme.md
Jun 13, 2018
33af892
downloadable deprecated code fix
Sep 13, 2019
3fbda1c
transactionReceipt now gives the data from appStoreReceipt (#2)
Feb 7, 2020
4f30466
Add new field and method for products
dmaza81 Apr 14, 2020
0d14fda
Add storeKit
dmaza81 Apr 14, 2020
991f64e
Modify data structure
dmaza81 Apr 14, 2020
f6dae80
Remove unecessary formatter
dmaza81 Apr 14, 2020
821adf3
Fix indentation
dmaza81 Apr 15, 2020
7f7b51a
Changes with Sergio's comments
dmaza81 Apr 15, 2020
0c359af
Awesome fix by Sergio
dmaza81 Apr 16, 2020
6ce1814
Merge pull request #3 from lingokids/new-fields-on-product-and-methods
dmaza81 Apr 16, 2020
d909756
Some changes for API
dmaza81 Apr 17, 2020
43535ec
Refactoring numberOfPeriod and fix
dmaza81 Apr 22, 2020
0d3e466
prevent introductoryPrice to be nil
May 4, 2020
58c49f6
Merge pull request #4 from lingokids/fix-nil-introductory-pricing
May 4, 2020
526d218
Fix nil country code
dmaza81 May 11, 2020
2a427f6
Check subscriptionPeriodNumberOfUnits nil value
dmaza81 May 11, 2020
d6d3eeb
Merge pull request #5 from lingokids/fix-nil-country-code
dmaza81 May 11, 2020
93d76fd
Use mostly widely supported methods for obtaining currency and countr…
Jun 4, 2020
4fe954d
Merge pull request #6 from lingokids/fix/missing-currency-code-and-co…
Jun 9, 2020
c6a84ae
Remove use of RCTKeyForIntance
monkora Nov 12, 2020
960e601
Merge pull request #8 from lingokids/remove-rctkeyforinstance
Nov 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion InAppUtils/InAppUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
#import <StoreKit/StoreKit.h>

#import <React/RCTBridgeModule.h>
#import <React/RCTEventEmitter.h>

@interface InAppUtils : NSObject <RCTBridgeModule, SKProductsRequestDelegate, SKPaymentTransactionObserver>
@interface InAppUtils : RCTEventEmitter <RCTBridgeModule, SKProductsRequestDelegate, SKPaymentTransactionObserver>

@end
Loading