Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
chore(Android): upgrade SDK to v29
Browse files Browse the repository at this point in the history
  • Loading branch information
fjcaetano committed Jan 26, 2021
1 parent 09c22ff commit 39cc0b1
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
components:
- tools
- platform-tools
- build-tools-28.0.3
- android-28
- build-tools-29.0.3
- android-29
- extra-google-m2repository
- extra-google-google_play_services

Expand Down Expand Up @@ -74,8 +74,8 @@ jobs:
components:
- tools
- platform-tools
- build-tools-28.0.3
- android-28
- build-tools-29.0.3
- android-29
- extra-google-m2repository
- extra-google-google_play_services

Expand Down Expand Up @@ -109,8 +109,8 @@ jobs:
components:
- tools
- platform-tools
- build-tools-28.0.3
- android-28
- build-tools-29.0.3
- android-29
- extra-google-m2repository
- extra-google-google_play_services

Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ source 'http://rubygems.org'

gem "cocoapods", "~> 1.8"
gem "fastlane", "~> 2.136"
gem "travis"
33 changes: 33 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ GEM
json (>= 1.5.1)
atomos (0.1.3)
babosa (1.0.3)
backports (3.20.1)
claide (1.0.3)
cocoapods (1.8.4)
activesupport (>= 4.0.2, < 5)
Expand Down Expand Up @@ -55,6 +56,7 @@ GEM
commander-fastlane (4.4.6)
highline (~> 1.7.2)
concurrent-ruby (1.1.5)
connection_pool (2.2.3)
declarative (0.0.10)
declarative-option (0.1.0)
digest-crc (0.4.1)
Expand All @@ -63,6 +65,8 @@ GEM
dotenv (2.7.5)
emoji_regex (1.0.1)
escape (0.0.4)
ethon (0.12.0)
ffi (>= 1.3.0)
excon (0.71.0)
faraday (0.17.0)
multipart-post (>= 1.2, < 3)
Expand Down Expand Up @@ -109,8 +113,16 @@ GEM
xcodeproj (>= 1.8.1, < 2.0.0)
xcpretty (~> 0.3.0)
xcpretty-travis-formatter (>= 0.0.3)
ffi (1.14.2)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh (0.14.0)
addressable
backports
faraday (~> 0.8)
multi_json (~> 1.0)
net-http-persistent (>= 2.7)
net-http-pipeline
gh_inspector (1.1.3)
google-api-client (0.23.9)
addressable (~> 2.5, >= 2.5.1)
Expand Down Expand Up @@ -144,6 +156,8 @@ GEM
concurrent-ruby (~> 1.0)
json (2.5.1)
jwt (2.1.0)
launchy (2.5.0)
addressable (~> 2.7)
memoist (0.16.1)
mime-types (3.3)
mime-types-data (~> 3.2015)
Expand All @@ -157,10 +171,16 @@ GEM
nanaimo (0.2.6)
nap (1.1.0)
naturally (2.2.0)
net-http-persistent (4.0.1)
connection_pool (~> 2.2)
net-http-pipeline (1.0.1)
netrc (0.11.0)
os (1.0.1)
plist (3.5.0)
public_suffix (2.0.5)
pusher-client (0.6.2)
json
websocket (~> 1.0)
representable (3.0.4)
declarative (< 0.1.0)
declarative-option (< 0.2.0)
Expand All @@ -183,17 +203,29 @@ GEM
terminal-table (1.8.0)
unicode-display_width (~> 1.1, >= 1.1.1)
thread_safe (0.3.6)
travis (1.8.13)
backports
faraday (~> 0.9)
faraday_middleware (~> 0.9, >= 0.9.1)
gh (~> 0.13)
highline (~> 1.6)
launchy (~> 2.1)
pusher-client (~> 0.4)
typhoeus (~> 0.6, >= 0.6.8)
tty-cursor (0.7.0)
tty-screen (0.7.0)
tty-spinner (0.9.1)
tty-cursor (~> 0.7)
typhoeus (0.8.0)
ethon (>= 0.8.0)
tzinfo (1.2.6)
thread_safe (~> 0.1)
uber (0.1.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.6)
unicode-display_width (1.6.0)
websocket (1.2.9)
word_wrap (1.0.0)
xcodeproj (1.13.0)
CFPropertyList (>= 2.3.3, < 4.0)
Expand All @@ -212,6 +244,7 @@ PLATFORMS
DEPENDENCIES
cocoapods (~> 1.8)
fastlane (~> 2.136)
travis

BUNDLED WITH
1.17.3
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<uses-permission android:name="android.permission.VIBRATE" />

<application
tools:targetApi="28"
tools:targetApi="29"
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
Expand Down
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

buildscript {
ext {
buildToolsVersion = "28.0.3"
buildToolsVersion = "29.0.3"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 28
compileSdkVersion = 29
targetSdkVersion = 29
androidXAnnotation = "1.1.0"
androidXBrowser = "1.0.0"
}
Expand Down
4 changes: 2 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -578,9 +578,9 @@ SPEC CHECKSUMS:
Base64: cecfb41a004124895a7bcee567a89bae5a89d49b
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
CodePush: 58d8b6595f46057ca1f49c55fb6860ad7fd38ce3
Crashlytics: 07fb167b1694128c1c9a5a5cc319b0e9c3ca0933
Crashlytics: a33af323773f73904037dc2e684cd2f0d29f4fe2
DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2
Fabric: f988e33c97f08930a413e08123064d2e5f68d655
Fabric: 09ef2d9b99b104702bede1acaf469fb8f20a9146
FBLazyVector: aaeaf388755e4f29cd74acbc9e3b8da6d807c37f
FBReactNativeSpec: 118d0d177724c2d67f08a59136eb29ef5943ec75
Firebase: 458d109512200d1aca2e1b9b6cf7d68a869a4a46
Expand Down

0 comments on commit 39cc0b1

Please sign in to comment.