Skip to content

Commit

Permalink
Merge pull request #1727 from numbersprotocol/change-in-app-purchase-…
Browse files Browse the repository at this point in the history
…product-ids

Change in app purchase product ids
  • Loading branch information
shc261392 authored Jun 22, 2022
2 parents c19752a + 47a26c4 commit 58a13c7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.59.0 - 2222-06-21
## 0.59.1 - 2022-06-22

### Changed

- Change In App Purchase IDs

## 0.59.0 - 2022-06-21

### Added

Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "io.numbersprotocol.capturelite"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 410
versionName "0.59.0"
versionCode 411
versionName "0.59.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "capture-lite",
"version": "0.59.0",
"version": "0.59.1",
"author": "numbersprotocol",
"homepage": "https://numbersprotocol.io/",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions src/app/shared/in-app-store/in-app-store.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ export class InAppStoreService implements OnDestroy {
}

export enum CaptureInAppProductIds {
BRONZE_PACK = 'cap_lite_consumable_bronze_pack_099',
SLIVER_PACK = 'cap_lite_consumable_silver_pack_199',
GOLD_PACK = 'cap_lite_consumable_gold_pack_299',
PLATINUM_PACK = 'cap_lite_consumable_platinum_pack_399',
BRONZE_PACK = 'capture_lite_consumable_bronze_pack_099',
SLIVER_PACK = 'capture_lite_consumable_silver_pack_199',
GOLD_PACK = 'capture_lite_consumable_gold_pack_299',
PLATINUM_PACK = 'capture_lite_consumable_platinum_pack_399',
}

interface InAppProductsWithNumPoint {
Expand Down

0 comments on commit 58a13c7

Please sign in to comment.