-
Notifications
You must be signed in to change notification settings - Fork 332
Conversation
- Set up the app & store for IAPs - No communication will be made with the backend - Hardcoded sample product id. Tapping “upgrade now” brings up the option to make an in-app purchase, Payment can be made “successfully”, and considered complete on receiving a receipt for an IAP. fixes: LEARNER-8429
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only some minor changes are requested
private val logger = Logger(TAG) | ||
|
||
private var RECONNECT_TIMER_START_MILLISECONDS = 1L * 1000L | ||
private val RECONNECT_MAX_TIME = 3 // retry connect max times |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO, we should update the name according to its use. i.e, RECONNECT_MAX_COUNT
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
renamed.
* | ||
* This BillingProcessor knows nothing about the application, all necessary information is either | ||
* passed into the constructor, exported as observable Flows, or exported through callbacks. | ||
* */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add refenence.
Need some doc for all the methods where possible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM (Y)
Description
LEARNER-8429
Tapping “upgrade now” brings up the option to make an in-app purchase, Payment can be made “successfully”, and considered complete on receiving a receipt for an IAP.
Testing
Ref