Skip to content

Commit 43266ff

Browse files
Update sample app pods
1 parent 15a02b3 commit 43266ff

File tree

5 files changed

+36
-15
lines changed

5 files changed

+36
-15
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ jobs:
8787
name: export flutter path
8888
command: echo 'export PATH="$PATH:`pwd`/flutter/bin"' >> $BASH_ENV
8989
- run:
90-
name: Fetch CocoaPods Specs
91-
command: curl https://cocoapods-specs.circleci.com/fetch-cocoapods-repo-from-s3.sh | bash -s cf
90+
name: Update Cocoapods
91+
command: sudo gem install cocoapods
9292
- run: flutter doctor
9393
- run:
9494
name: Flutter build

example/ios/Podfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
source 'https://cdn.cocoapods.org/'
2+
13
platform :ios, '10.0'
24

35
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.

example/ios/Podfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ PODS:
33
- Instabug (9.1.4)
44
- instabug_flutter (0.0.1):
55
- Flutter
6-
- Instabug (= 9.1.4)
7-
- OCMock (3.6)
6+
- Instabug (= 9.1.7)
7+
- OCMock (3.8.1)
88

99
DEPENDENCIES:
1010
- Flutter (from `.symlinks/flutter/ios`)
@@ -24,10 +24,10 @@ EXTERNAL SOURCES:
2424

2525
SPEC CHECKSUMS:
2626
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
27-
Instabug: 6d8d38c329b8ae0a88bba4d148280e24bc0cf000
28-
instabug_flutter: 904f8ae866249364e68e2d0ca05fc903f2fb7573
29-
OCMock: 5ea90566be239f179ba766fd9fbae5885040b992
27+
Instabug: 28838c071edc50e4f13800e6877645d3b328aab9
28+
instabug_flutter: 65794e9f82acebde599e56cc6a2e74a17b69410e
29+
OCMock: 29f6e52085b4e7d9b075cbf03ed7c3112f82f934
3030

3131
PODFILE CHECKSUM: 8a47551d4cb50d1be73b4b5bed8629d9a9468757
3232

33-
COCOAPODS: 1.9.1
33+
COCOAPODS: 1.10.1

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -388,14 +388,13 @@
388388
inputFileListPaths = (
389389
);
390390
inputPaths = (
391-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
392-
"${PODS_ROOT}/Manifest.lock",
393-
);
394-
name = "[CP] Check Pods Manifest.lock";
395-
outputFileListPaths = (
391+
"${PODS_ROOT}/Target Support Files/Pods-instabug_flutter_exampleUITests/Pods-instabug_flutter_exampleUITests-frameworks.sh",
392+
"${PODS_ROOT}/../.symlinks/flutter/ios/Flutter.framework",
393+
"${PODS_ROOT}/Instabug/Instabug.framework",
396394
);
397395
outputPaths = (
398-
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
396+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework",
397+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Instabug.framework",
399398
);
400399
runOnlyForDeploymentPostprocessing = 0;
401400
shellPath = /bin/sh;
@@ -416,6 +415,26 @@
416415
shellPath = /bin/sh;
417416
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
418417
};
418+
B124A89E7A3F2D359FD8BAAD /* [CP] Embed Pods Frameworks */ = {
419+
isa = PBXShellScriptBuildPhase;
420+
buildActionMask = 2147483647;
421+
files = (
422+
);
423+
inputPaths = (
424+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh",
425+
"${PODS_ROOT}/../.symlinks/flutter/ios/Flutter.framework",
426+
"${PODS_ROOT}/Instabug/Instabug.framework",
427+
);
428+
name = "[CP] Embed Pods Frameworks";
429+
outputPaths = (
430+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework",
431+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Instabug.framework",
432+
);
433+
runOnlyForDeploymentPostprocessing = 0;
434+
shellPath = /bin/sh;
435+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
436+
showEnvVarsInLog = 0;
437+
};
419438
/* End PBXShellScriptBuildPhase section */
420439

421440
/* Begin PBXSourcesBuildPhase section */

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Demonstrates how to use the instabug_flutter plugin.
33
publish_to: 'none'
44

55
environment:
6-
sdk: ">=2.0.0-dev.68.0 <3.0.0"
6+
sdk: ">=2.1.0 <3.0.0"
77

88
dependencies:
99
flutter:

0 commit comments

Comments
 (0)