From f87e832060d6bf98d5cb64b9f4b6edde83ad913b Mon Sep 17 00:00:00 2001 From: Suzanne Scala Date: Thu, 30 Jul 2026 12:03:06 -0700 Subject: [PATCH] Remove references to Cocoapods + Podfiles --- CONTRIBUTING.md | 2 +- GoogleMaps/Podfile | 8 -------- GoogleNavigation/Podfile | 8 -------- GooglePlaces-Swift/Podfile | 8 -------- GooglePlaces/Podfile | 8 -------- copy_pod_try.sh | 28 ---------------------------- snippets/MapsBetaSnippets/Podfile | 6 ------ snippets/MapsSnippets/Podfile | 6 ------ snippets/PlacesSnippets/Podfile | 7 ------- snippets/Podfile | 15 --------------- tutorials/map-with-marker/Podfile | 5 ----- 11 files changed, 1 insertion(+), 100 deletions(-) delete mode 100755 GoogleMaps/Podfile delete mode 100755 GoogleNavigation/Podfile delete mode 100755 GooglePlaces-Swift/Podfile delete mode 100755 GooglePlaces/Podfile delete mode 100755 copy_pod_try.sh delete mode 100644 snippets/MapsBetaSnippets/Podfile delete mode 100644 snippets/MapsSnippets/Podfile delete mode 100644 snippets/PlacesSnippets/Podfile delete mode 100644 snippets/Podfile delete mode 100644 tutorials/map-with-marker/Podfile diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fc5b18a0..e347b021 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Not accepting contributions -Since this repository is a one-way mirror of the code from `pod try sync` we are +We are not currently accepting external contributions. Pull requests are accepted from a limited set of repository members. diff --git a/GoogleMaps/Podfile b/GoogleMaps/Podfile deleted file mode 100755 index 4b2f9038..00000000 --- a/GoogleMaps/Podfile +++ /dev/null @@ -1,8 +0,0 @@ -source 'https://cdn.cocoapods.org/' - -platform :ios, '15.0' - -target 'GoogleMapsXCFrameworkDemos' do - project 'GoogleMapsXCFrameworkDemos' - pod 'GoogleMaps', '= 9.2.0' -end diff --git a/GoogleNavigation/Podfile b/GoogleNavigation/Podfile deleted file mode 100755 index 4bf702d3..00000000 --- a/GoogleNavigation/Podfile +++ /dev/null @@ -1,8 +0,0 @@ -source 'https://cdn.cocoapods.org/' - -platform :ios, '15.0' - -target 'GoogleNavXCFrameworkDemos' do - project 'GoogleNavXCFrameworkDemos' - pod 'GoogleNavigation', '= 9.2.0' -end diff --git a/GooglePlaces-Swift/Podfile b/GooglePlaces-Swift/Podfile deleted file mode 100755 index dcc7b0b7..00000000 --- a/GooglePlaces-Swift/Podfile +++ /dev/null @@ -1,8 +0,0 @@ -source 'https://cdn.cocoapods.org/' - -platform :ios, '15.0' - -target 'GooglePlacesSwiftXCFrameworkDemos' do - project 'GooglePlacesSwiftXCFrameworkDemos' - pod 'GooglePlaces', '= 9.2.0' -end diff --git a/GooglePlaces/Podfile b/GooglePlaces/Podfile deleted file mode 100755 index 7bcc0f6b..00000000 --- a/GooglePlaces/Podfile +++ /dev/null @@ -1,8 +0,0 @@ -source 'https://cdn.cocoapods.org/' - -platform :ios, '15.0' - -target 'GooglePlacesXCFrameworkDemos' do - project 'GooglePlacesXCFrameworkDemos' - pod 'GooglePlaces', '= 9.2.0' -end diff --git a/copy_pod_try.sh b/copy_pod_try.sh deleted file mode 100755 index 82e1003e..00000000 --- a/copy_pod_try.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# Copyright 2020 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -POD_NAME="$1" -DESTINATION_DIR="$2" -POD_TRY_OPTION="$3" - -echo "Invoking 'pod try $POD_NAME'" - -pod _1.6.1_ --verbose try $POD_NAME <<< $POD_TRY_OPTION - -POD_TRY_DIR="$(pod _1.6.1_ try $POD_NAME <<< $POD_TRY_OPTION | tail -1 | awk '{print $2}' | echo "/$(cut -d\/ -f2-11)")" - -echo "Copying contents of '$POD_TRY_DIR' into '$DESTINATION_DIR'" -cp -R $POD_TRY_DIR/* $DESTINATION_DIR/. - diff --git a/snippets/MapsBetaSnippets/Podfile b/snippets/MapsBetaSnippets/Podfile deleted file mode 100644 index b35b38c8..00000000 --- a/snippets/MapsBetaSnippets/Podfile +++ /dev/null @@ -1,6 +0,0 @@ -source 'https://cdn.cocoapods.org/' - -target 'MapsBetaSnippets' do - platform :ios, '10.0' - pod 'GoogleMaps', '= 3.10.0-beta1' -end \ No newline at end of file diff --git a/snippets/MapsSnippets/Podfile b/snippets/MapsSnippets/Podfile deleted file mode 100644 index 590ed911..00000000 --- a/snippets/MapsSnippets/Podfile +++ /dev/null @@ -1,6 +0,0 @@ -source 'https://cdn.cocoapods.org/' - -target 'MapsSnippets' do - platform :ios, '15.0' - pod 'GoogleMaps', '9.2.0' -end diff --git a/snippets/PlacesSnippets/Podfile b/snippets/PlacesSnippets/Podfile deleted file mode 100644 index 48233c62..00000000 --- a/snippets/PlacesSnippets/Podfile +++ /dev/null @@ -1,7 +0,0 @@ -source 'https://cdn.cocoapods.org/' - -target 'PlacesSnippets' do - platform :ios, '15.0' - pod 'GooglePlaces', '9.2.0' - pod 'GoogleMaps', '9.2.0' -end \ No newline at end of file diff --git a/snippets/Podfile b/snippets/Podfile deleted file mode 100644 index 2b7b65d2..00000000 --- a/snippets/Podfile +++ /dev/null @@ -1,15 +0,0 @@ -source 'https://cdn.cocoapods.org/' - -platform :ios, '15.0' - -target 'YOUR_APPLICATION_TARGET_NAME_HERE' do - pod 'GoogleMaps', '9.2.0' -end - -source 'https://cdn.cocoapods.org/' - -platform :ios, '15.0' - -target 'YOUR_APPLICATION_TARGET_NAME_HERE' do - pod 'GooglePlaces', '9.2.0' -end diff --git a/tutorials/map-with-marker/Podfile b/tutorials/map-with-marker/Podfile deleted file mode 100644 index 04edb20b..00000000 --- a/tutorials/map-with-marker/Podfile +++ /dev/null @@ -1,5 +0,0 @@ -source 'https://cdn.cocoapods.org/' -target 'map-with-marker' do - platform :ios, '15.0' - pod 'GoogleMaps', '9.0.0' -end \ No newline at end of file