[go: nahoru, domu]

Skip to content

Commit

Permalink
Update all quickstarts to iOS 13 minimum (#1518)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Oct 6, 2023
1 parent d47a7ad commit 93f9cd6
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion abtesting/LegacyABTestingQuickstart/Podfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
platform :ios, '11.0'
platform :ios, '13.0'

target 'ABTestingExample' do
use_frameworks!
Expand Down
2 changes: 1 addition & 1 deletion admob/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

pod 'FirebaseAnalytics'
pod 'Google-Mobile-Ads-SDK', '> 9.0'
Expand Down
2 changes: 1 addition & 1 deletion analytics/LegacyAnalyticsQuickstart/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# AnalyticsExample

use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

target 'AnalyticsExample' do
pod 'FirebaseAnalytics'
Expand Down
2 changes: 1 addition & 1 deletion appdistribution/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
platform :ios, '13.0'

target 'AppDistributionExample' do
# Comment the next line if you don't want to use dynamic frameworks
Expand Down
2 changes: 1 addition & 1 deletion authentication/LegacyAuthQuickstart/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# AuthenticationExample

use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'
pod 'FirebaseAnalytics'
# [START auth_pod]
pod 'FirebaseAuth'
Expand Down
2 changes: 1 addition & 1 deletion config/LegacyConfigQuickstart/Podfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ConfigExample
use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

pod 'FirebaseRemoteConfig'

Expand Down
2 changes: 1 addition & 1 deletion crashlytics/LegacyCrashlyticsQuickstart/Podfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CrashlyticsExample
use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

target 'CrashlyticsExample' do
pod 'FirebaseCrashlytics'
Expand Down
2 changes: 1 addition & 1 deletion database/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# DatabaseExample

use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

def firebase_pods
pod 'FirebaseAuth'
Expand Down
2 changes: 1 addition & 1 deletion dynamiclinks/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# DynamicLinksExample

use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

# [START pod_ddl]
pod 'FirebaseAnalytics'
Expand Down
2 changes: 1 addition & 1 deletion functions/LegacyFunctionsQuickstart/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# FunctionsExample

use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

pod 'FirebaseAnalytics'
pod 'FirebaseAuth'
Expand Down
2 changes: 1 addition & 1 deletion inappmessaging/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
platform :ios, '13.0'

use_frameworks!

Expand Down
2 changes: 1 addition & 1 deletion installations/Podfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
platform :ios, '11.0'
platform :ios, '13.0'
use_frameworks!

pod 'FirebaseInstallations'
Expand Down
2 changes: 1 addition & 1 deletion messaging/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Firebase Cloud Messaging (FCM)

use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

def firebase_pods
pod 'FirebaseAnalytics'
Expand Down
2 changes: 1 addition & 1 deletion performance/Podfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PerformanceExample
use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

pod 'FirebaseAnalytics'
pod 'FirebasePerformance'
Expand Down
2 changes: 1 addition & 1 deletion storage/LegacyStorageQuickstart/Podfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# StorageExample

use_frameworks!
platform :ios, '11.0'
platform :ios, '13.0'

pod 'FirebaseAuth'
pod 'FirebaseStorage'
Expand Down
2 changes: 1 addition & 1 deletion template/clone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ grep $SOURCE -R . && {
echo "Creating Podfile..."
echo "# $DEST" > Podfile
echo "use_frameworks!" >> Podfile
echo "platform :ios, '11.0'" >> Podfile
echo "platform :ios, '13.0'" >> Podfile
if [[ -n "${POD}" ]]; then
echo "Including pod: $POD"
echo "pod '$POD'" >> Podfile
Expand Down

0 comments on commit 93f9cd6

Please sign in to comment.