Skip to content

Commit 3f9ea4e

Browse files
committed
fix: reference the correct iOS SDK and the correct podfile setup
1 parent 7bfa60a commit 3f9ea4e

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

example/ios/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ target 'Runner' do
3030

3131
use_frameworks!
3232
use_modular_headers!
33-
pod 'Instabug', :podspec => 'https://ios-releases.instabug.com/custom/feature-expose_network_limit-expose_body_limit/15.0.1/Instabug.podspec'
3433

3534
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
3635
end

example/ios/Podfile.lock

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,33 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- Instabug (15.0.1)
4-
- instabug_flutter (14.3.0):
3+
- Instabug (15.1.1)
4+
- instabug_flutter (15.1.1):
55
- Flutter
6+
- Instabug (= 15.1.1)
67
- OCMock (3.6)
78

89
DEPENDENCIES:
910
- Flutter (from `Flutter`)
10-
- Instabug (from `https://ios-releases.instabug.com/custom/feature-expose_network_limit-expose_body_limit/15.0.1/Instabug.podspec`)
1111
- instabug_flutter (from `.symlinks/plugins/instabug_flutter/ios`)
1212
- OCMock (= 3.6)
1313

1414
SPEC REPOS:
1515
trunk:
16+
- Instabug
1617
- OCMock
1718

1819
EXTERNAL SOURCES:
1920
Flutter:
2021
:path: Flutter
21-
Instabug:
22-
:podspec: https://ios-releases.instabug.com/custom/feature-expose_network_limit-expose_body_limit/15.0.1/Instabug.podspec
2322
instabug_flutter:
2423
:path: ".symlinks/plugins/instabug_flutter/ios"
2524

2625
SPEC CHECKSUMS:
2726
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
28-
Instabug: ba6587d15ad5e3ffa265afc8174ff83af4eed29d
29-
instabug_flutter: 4fff4189287934eb3677f72edb0604eeed643980
27+
Instabug: 3e7af445c14d7823fcdecba223f09b5f7c0c6ce1
28+
instabug_flutter: 30aec1138f5d9c99d175e4f4ad49189ed844b72a
3029
OCMock: 5ea90566be239f179ba766fd9fbae5885040b992
3130

32-
PODFILE CHECKSUM: cb4e58e3fdd6b7eb6b2fa2288c84d8a46b98b309
31+
PODFILE CHECKSUM: 4d0aaaf6a444f68024f992999ff2c2ee26baa6ec
3332

3433
COCOAPODS: 1.16.2

example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
ignoresPersistentStateOnLaunch = "NO"
6969
debugDocumentVersioning = "YES"
7070
debugServiceExtension = "internal"
71+
enableGPUValidationMode = "1"
7172
allowLocationSimulation = "YES">
7273
<BuildableProductRunnable
7374
runnableDebuggingMode = "0">

ios/instabug_flutter.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'instabug_flutter'
3-
s.version = '14.3.0'
3+
s.version = '15.1.1'
44
s.summary = 'Flutter plugin for integrating the Instabug SDK.'
55
s.author = 'Instabug'
66
s.homepage = 'https://www.instabug.com/platforms/flutter'
@@ -17,5 +17,6 @@ Pod::Spec.new do |s|
1717
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-framework "Flutter" -framework "InstabugSDK"'}
1818

1919
s.dependency 'Flutter'
20+
s.dependency 'Instabug', '15.1.1'
2021
end
2122

0 commit comments

Comments
 (0)