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

Commit

Permalink
parent a067354
Browse files Browse the repository at this point in the history
author Patricio <patricio@iovlabs.org> 1621431019 -0300
committer Patricio <patricio@iovlabs.org> 1621434365 -0300

chore: upgrade android target SDK to 30
  • Loading branch information
patogallaiovlabs committed May 19, 2021
1 parent a067354 commit 2eb1645
Show file tree
Hide file tree
Showing 6 changed files with 87 additions and 46 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ android/keystores/
android/app/release/
android/app/google-services.json

#ios
ios/rwallet/GoogleService-Info.plist
/ios/rwallet/GoogleService-Info.plist

# node.js
#
node_modules/
Expand Down
12 changes: 6 additions & 6 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

buildscript {
ext {
minSdkVersion = 16
compileSdkVersion = 29
buildToolsVersion = "29.0.2"
targetSdkVersion = 29
supportLibVersion = "29.0.0"
minSdkVersion = 16
targetSdkVersion = 30
compileSdkVersion = 30
buildToolsVersion = "30.0.2"
supportLibVersion = "30.0.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.4.0")
classpath 'com.google.gms:google-services:4.3.3'
classpath 'com.google.gms:google-services:4.3.8'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
6 changes: 4 additions & 2 deletions ios/rwallet/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ @implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
if ([FIRApp defaultApp] == nil) {
[FIRApp configure];
}
[RNFirebaseNotifications configure];
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
moduleName:@"rwallet"
Expand All @@ -33,8 +37,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
[self.window makeKeyAndVisible];


[FIRApp configure];
[RNFirebaseNotifications configure];

return YES;
}
Expand Down
38 changes: 0 additions & 38 deletions ios/rwallet/GoogleService-Info.plist

This file was deleted.

72 changes: 72 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@react-native-community/blur": "^3.6.0",
"@react-native-community/slider": "^1.1.4",
"@react-native-community/toolbar-android": "^0.1.0-rc.2",
"@react-native-firebase/app": "^11.5.0",
"@rsksmart/rns-resolver.js": "^1.0.0",
"@rsksmart/rsk3": "^0.3.2",
"@tradle/react-native-http": "^2.0.1",
Expand Down

0 comments on commit 2eb1645

Please sign in to comment.