File tree Expand file tree Collapse file tree 15 files changed +183
-188
lines changed
firebase-auth-flutterfire-ui Expand file tree Collapse file tree 15 files changed +183
-188
lines changed Original file line number Diff line number Diff line change @@ -323,19 +323,6 @@ steps:
323323 <string>1:963656261848:ios:3e6776183887c3fdb237ad</string>
324324 </dict>
325325 </plist>
326- - name: ios/Podfile
327- path: start/ios/Podfile
328- patch-u: |
329- --- b/firebase-auth-flutterfire-ui/start/ios/Podfile
330- +++ a/firebase-auth-flutterfire-ui/start/ios/Podfile
331- @@ -1,5 +1,5 @@
332- -# Uncomment this line to define a global platform for your project
333- -# platform :ios, '12.0'
334- +# Native Firebase plugins require iOS 13.0 minimum, Flutter only requires 12.0
335- +platform :ios, '13.0'
336-
337- # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
338- ENV['COCOAPODS_DISABLE_STATS'] = 'true'
339326 - name: macos/Runner/GoogleService-Info.plist
340327 path: start/macos/Runner/GoogleService-Info.plist
341328 replace-contents: |
Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ allprojects {
55 }
66}
77
8- val newBuildDir: Directory = rootProject.layout.buildDirectory.dir(" ../../build" ).get()
8+ val newBuildDir: Directory =
9+ rootProject.layout.buildDirectory
10+ .dir(" ../../build" )
11+ .get()
912rootProject.layout.buildDirectory.value(newBuildDir)
1013
1114subprojects {
Original file line number Diff line number Diff line change 11pluginManagement {
2- val flutterSdkPath = run {
3- val properties = java.util.Properties ()
4- file(" local.properties" ).inputStream().use { properties.load(it) }
5- val flutterSdkPath = properties.getProperty(" flutter.sdk" )
6- require(flutterSdkPath != null ) { " flutter.sdk not set in local.properties" }
7- flutterSdkPath
8- }
2+ val flutterSdkPath =
3+ run {
4+ val properties = java.util.Properties ()
5+ file(" local.properties" ).inputStream().use { properties.load(it) }
6+ val flutterSdkPath = properties.getProperty(" flutter.sdk" )
7+ require(flutterSdkPath != null ) { " flutter.sdk not set in local.properties" }
8+ flutterSdkPath
9+ }
910
1011 includeBuild(" $flutterSdkPath /packages/flutter_tools/gradle" )
1112
@@ -18,7 +19,7 @@ pluginManagement {
1819
1920plugins {
2021 id(" dev.flutter.flutter-plugin-loader" ) version " 1.0.0"
21- id(" com.android.application" ) version " 8.7.3 " apply false
22+ id(" com.android.application" ) version " 8.9.1 " apply false
2223 id(" org.jetbrains.kotlin.android" ) version " 2.1.0" apply false
2324}
2425
Original file line number Diff line number Diff line change 2121 <key >CFBundleVersion </key >
2222 <string >1.0 </string >
2323 <key >MinimumOSVersion </key >
24- <string >12 .0 </string >
24+ <string >13 .0 </string >
2525</dict >
2626</plist >
Original file line number Diff line number Diff line change 1- # Native Firebase plugins require iOS 13.0 minimum, Flutter only requires 12.0
2- platform :ios , '13.0'
1+ # Uncomment this line to define a global platform for your project
2+ # platform :ios, '13.0'
33
44# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55ENV [ 'COCOAPODS_DISABLE_STATS' ] = 'true'
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 461461 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
462462 GCC_WARN_UNUSED_FUNCTION = YES;
463463 GCC_WARN_UNUSED_VARIABLE = YES;
464- MACOSX_DEPLOYMENT_TARGET = 10.14 ;
464+ MACOSX_DEPLOYMENT_TARGET = 10.15 ;
465465 MTL_ENABLE_DEBUG_INFO = NO;
466466 SDKROOT = macosx;
467467 SWIFT_COMPILATION_MODE = wholemodule;
543543 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
544544 GCC_WARN_UNUSED_FUNCTION = YES;
545545 GCC_WARN_UNUSED_VARIABLE = YES;
546- MACOSX_DEPLOYMENT_TARGET = 10.14 ;
546+ MACOSX_DEPLOYMENT_TARGET = 10.15 ;
547547 MTL_ENABLE_DEBUG_INFO = YES;
548548 ONLY_ACTIVE_ARCH = YES;
549549 SDKROOT = macosx;
593593 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
594594 GCC_WARN_UNUSED_FUNCTION = YES;
595595 GCC_WARN_UNUSED_VARIABLE = YES;
596- MACOSX_DEPLOYMENT_TARGET = 10.14 ;
596+ MACOSX_DEPLOYMENT_TARGET = 10.15 ;
597597 MTL_ENABLE_DEBUG_INFO = NO;
598598 SDKROOT = macosx;
599599 SWIFT_COMPILATION_MODE = wholemodule;
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ publish_to: 'none'
44version : 0.1.0
55
66environment :
7- sdk : ^3.8. 0
7+ sdk : ^3.9.0- 0
88
99dependencies :
1010 flutter :
1111 sdk : flutter
12- firebase_auth : ^5.5.3
13- firebase_core : ^3.13.0
12+ firebase_auth : ^5.5.4
13+ firebase_core : ^3.13.1
1414 firebase_ui_auth : ^1.16.1
1515 firebase_ui_oauth_google : ^1.4.1
1616 google_sign_in : ^6.3.0
Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ allprojects {
55 }
66}
77
8- val newBuildDir: Directory = rootProject.layout.buildDirectory.dir(" ../../build" ).get()
8+ val newBuildDir: Directory =
9+ rootProject.layout.buildDirectory
10+ .dir(" ../../build" )
11+ .get()
912rootProject.layout.buildDirectory.value(newBuildDir)
1013
1114subprojects {
Original file line number Diff line number Diff line change 11pluginManagement {
2- val flutterSdkPath = run {
3- val properties = java.util.Properties ()
4- file(" local.properties" ).inputStream().use { properties.load(it) }
5- val flutterSdkPath = properties.getProperty(" flutter.sdk" )
6- require(flutterSdkPath != null ) { " flutter.sdk not set in local.properties" }
7- flutterSdkPath
8- }
2+ val flutterSdkPath =
3+ run {
4+ val properties = java.util.Properties ()
5+ file(" local.properties" ).inputStream().use { properties.load(it) }
6+ val flutterSdkPath = properties.getProperty(" flutter.sdk" )
7+ require(flutterSdkPath != null ) { " flutter.sdk not set in local.properties" }
8+ flutterSdkPath
9+ }
910
1011 includeBuild(" $flutterSdkPath /packages/flutter_tools/gradle" )
1112
@@ -18,7 +19,7 @@ pluginManagement {
1819
1920plugins {
2021 id(" dev.flutter.flutter-plugin-loader" ) version " 1.0.0"
21- id(" com.android.application" ) version " 8.7.3 " apply false
22+ id(" com.android.application" ) version " 8.9.1 " apply false
2223 id(" org.jetbrains.kotlin.android" ) version " 2.1.0" apply false
2324}
2425
You can’t perform that action at this time.
0 commit comments