Skip to content

Commit 4d75b41

Browse files
SK-2308: fix outdated packages (#115)
1 parent cb36222 commit 4d75b41

4 files changed

Lines changed: 4739 additions & 25 deletions

File tree

example/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ source 'https://rubygems.org'
44
ruby '2.7.4'
55

66
gem 'cocoapods', '~> 1.11', '>= 1.11.2'
7+
gem 'rexml', '>= 3.4.2'

example/Gemfile.lock

Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
CFPropertyList (3.0.7)
5-
base64
6-
nkf
7-
rexml
8-
activesupport (7.1.5.1)
4+
CFPropertyList (3.0.9)
5+
activesupport (7.1.6)
96
base64
107
benchmark (>= 0.3)
118
bigdecimal
@@ -18,15 +15,15 @@ GEM
1815
mutex_m
1916
securerandom (>= 0.3)
2017
tzinfo (~> 2.0)
21-
addressable (2.8.7)
22-
public_suffix (>= 2.0.2, < 7.0)
18+
addressable (2.8.8)
19+
public_suffix (>= 2.0.2, < 8.0)
2320
algoliasearch (1.27.5)
2421
httpclient (~> 2.8, >= 2.8.3)
2522
json (>= 1.5.1)
2623
atomos (0.1.3)
27-
base64 (0.2.0)
28-
benchmark (0.4.0)
29-
bigdecimal (3.1.9)
24+
base64 (0.3.0)
25+
benchmark (0.5.0)
26+
bigdecimal (3.3.1)
3027
claide (1.1.0)
3128
cocoapods (1.16.2)
3229
addressable (~> 2.8)
@@ -66,34 +63,34 @@ GEM
6663
netrc (~> 0.11)
6764
cocoapods-try (1.2.0)
6865
colored2 (3.1.2)
69-
concurrent-ruby (1.3.4)
70-
connection_pool (2.4.1)
71-
drb (2.2.1)
66+
concurrent-ruby (1.3.5)
67+
connection_pool (2.5.5)
68+
drb (2.2.3)
7269
escape (0.0.4)
73-
ethon (0.16.0)
70+
ethon (0.15.0)
7471
ffi (>= 1.15.0)
75-
ffi (1.17.1)
72+
ffi (1.17.2)
7673
fourflusher (2.3.1)
7774
fuzzy_match (2.0.4)
7875
gh_inspector (1.1.3)
79-
httpclient (2.8.3)
80-
i18n (1.14.6)
76+
httpclient (2.9.0)
77+
mutex_m
78+
i18n (1.14.7)
8179
concurrent-ruby (~> 1.0)
82-
json (2.9.1)
83-
logger (1.6.4)
84-
minitest (5.25.4)
80+
json (2.17.1)
81+
logger (1.7.0)
82+
minitest (5.26.1)
8583
molinillo (0.8.0)
8684
mutex_m (0.3.0)
8785
nanaimo (0.4.0)
8886
nap (1.1.0)
8987
netrc (0.11.0)
90-
nkf (0.2.0)
9188
public_suffix (4.0.7)
92-
rexml (3.4.0)
89+
rexml (3.4.4)
9390
ruby-macho (2.5.1)
9491
securerandom (0.3.2)
95-
typhoeus (1.4.1)
96-
ethon (>= 0.9.0)
92+
typhoeus (1.5.0)
93+
ethon (>= 0.9.0, < 0.16.0)
9794
tzinfo (2.0.6)
9895
concurrent-ruby (~> 1.0)
9996
xcodeproj (1.27.0)
@@ -109,9 +106,10 @@ PLATFORMS
109106

110107
DEPENDENCIES
111108
cocoapods (~> 1.11, >= 1.11.2)
109+
rexml (>= 3.4.2)
112110

113111
RUBY VERSION
114112
ruby 2.7.4p191
115113

116114
BUNDLED WITH
117-
2.1.4
115+
2.4.22

example/android/build.gradle

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,18 @@ buildscript {
1515
ndkVersion = "21.4.7075529"
1616
}
1717
}
18+
19+
buildscript {
20+
configurations.all {
21+
resolutionStrategy.force(
22+
"org.apache.commons:commons-compress:1.21",
23+
"com.google.protobuf:protobuf-java:3.25.5",
24+
"io.netty:netty-codec:4.1.68.Final",
25+
"io.netty:netty-codec-http:4.1.125.Final"
26+
)
27+
}
28+
}
29+
1830
repositories {
1931
google()
2032
mavenCentral()

0 commit comments

Comments
 (0)