Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions example/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ source 'https://rubygems.org'
ruby '2.7.4'

gem 'cocoapods', '~> 1.11', '>= 1.11.2'
gem 'rexml', '>= 3.4.2'
48 changes: 23 additions & 25 deletions example/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
GEM
remote: https://rubygems.org/
specs:
CFPropertyList (3.0.7)
base64
nkf
rexml
activesupport (7.1.5.1)
CFPropertyList (3.0.9)
activesupport (7.1.6)
base64
benchmark (>= 0.3)
bigdecimal
Expand All @@ -18,15 +15,15 @@ GEM
mutex_m
securerandom (>= 0.3)
tzinfo (~> 2.0)
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
addressable (2.8.8)
public_suffix (>= 2.0.2, < 8.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
atomos (0.1.3)
base64 (0.2.0)
benchmark (0.4.0)
bigdecimal (3.1.9)
base64 (0.3.0)
benchmark (0.5.0)
bigdecimal (3.3.1)
claide (1.1.0)
cocoapods (1.16.2)
addressable (~> 2.8)
Expand Down Expand Up @@ -66,34 +63,34 @@ GEM
netrc (~> 0.11)
cocoapods-try (1.2.0)
colored2 (3.1.2)
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
drb (2.2.1)
concurrent-ruby (1.3.5)
connection_pool (2.5.5)
drb (2.2.3)
escape (0.0.4)
ethon (0.16.0)
ethon (0.15.0)
ffi (>= 1.15.0)
ffi (1.17.1)
ffi (1.17.2)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
httpclient (2.8.3)
i18n (1.14.6)
httpclient (2.9.0)
mutex_m
i18n (1.14.7)
concurrent-ruby (~> 1.0)
json (2.9.1)
logger (1.6.4)
minitest (5.25.4)
json (2.17.1)
logger (1.7.0)
minitest (5.26.1)
molinillo (0.8.0)
mutex_m (0.3.0)
nanaimo (0.4.0)
nap (1.1.0)
netrc (0.11.0)
nkf (0.2.0)
public_suffix (4.0.7)
rexml (3.4.0)
rexml (3.4.4)
ruby-macho (2.5.1)
securerandom (0.3.2)
typhoeus (1.4.1)
ethon (>= 0.9.0)
typhoeus (1.5.0)
ethon (>= 0.9.0, < 0.16.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
xcodeproj (1.27.0)
Expand All @@ -109,9 +106,10 @@ PLATFORMS

DEPENDENCIES
cocoapods (~> 1.11, >= 1.11.2)
rexml (>= 3.4.2)

RUBY VERSION
ruby 2.7.4p191

BUNDLED WITH
2.1.4
2.4.22
12 changes: 12 additions & 0 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ buildscript {
ndkVersion = "21.4.7075529"
}
}

buildscript {
configurations.all {
resolutionStrategy.force(
"org.apache.commons:commons-compress:1.21",
"com.google.protobuf:protobuf-java:3.25.5",
"io.netty:netty-codec:4.1.68.Final",
"io.netty:netty-codec-http:4.1.125.Final"
)
}
}

repositories {
google()
mavenCentral()
Expand Down
Loading