Skip to content

Commit 3248e30

Browse files
authored
Merge pull request #385 from qonversion/fix/dev-68-fix-purchase-action-typy-v9
2 parents c0be2d4 + 021ee6f commit 3248e30

3 files changed

Lines changed: 52 additions & 17 deletions

File tree

.gitignore

Lines changed: 50 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
#
33
.DS_Store
44

5-
# node.js
6-
#
7-
node_modules/
8-
npm-debug.log
9-
yarn-error.log
5+
# VSCode
6+
.vscode/
7+
jsconfig.json
108

119
# Xcode
1210
#
@@ -27,23 +25,60 @@ DerivedData
2725
*.ipa
2826
*.xcuserstate
2927
project.xcworkspace
28+
**/.xcode.env.local
3029

31-
# Android/IntelliJ
30+
# Android/IJ
3231
#
33-
build/
34-
.idea
32+
.classpath
33+
.cxx
3534
.gradle
35+
.idea
36+
.project
37+
.settings
3638
local.properties
37-
*.iml
39+
android.iml
40+
41+
# Cocoapods
42+
#
43+
example/ios/Pods
44+
45+
# Ruby
46+
example/vendor/
47+
48+
# node.js
49+
#
50+
node_modules/
51+
npm-debug.log
52+
yarn-debug.log
53+
yarn-error.log
3854

3955
# BUCK
4056
buck-out/
4157
\.buckd/
42-
*.keystore
58+
android/app/libs
59+
android/keystores/debug.keystore
60+
61+
# Yarn
62+
.yarn/*
63+
example/.yarn/*
64+
!.yarn/patches
65+
!.yarn/plugins
66+
!.yarn/releases
67+
!.yarn/sdks
68+
!.yarn/versions
69+
70+
# Expo
71+
.expo/
72+
73+
# Turborepo
74+
.turbo/
75+
76+
# generated by bob
77+
lib/
4378

44-
# vscode
45-
.vscode
79+
# React Native Codegen
80+
ios/generated
81+
android/generated
4682

47-
# CocoaPods
48-
Pods/
49-
Podfile.lock
83+
# React Native Nitro Modules
84+
nitrogen/

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ repositories {
6565
dependencies {
6666
//noinspection GradleDynamicVersion
6767
implementation 'com.facebook.react:react-native:+' // From node_modules
68-
implementation "io.qonversion:sandwich:6.0.6"
68+
implementation "io.qonversion:sandwich:6.0.11"
6969
}
7070

7171
afterEvaluate { project ->

react-native-qonversion.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ Pod::Spec.new do |s|
2222
s.requires_arc = true
2323

2424
s.dependency "React"
25-
s.dependency "QonversionSandwich", "6.0.8"
25+
s.dependency "QonversionSandwich", "6.0.11"
2626

2727
end

0 commit comments

Comments
 (0)