Skip to content

Commit 601dcb5

Browse files
Sandip KakadiyaSandip Kakadiya
Sandip Kakadiya
authored and
Sandip Kakadiya
committed
Release 1.0.9(10)
1 parent 5e5a8a3 commit 601dcb5

File tree

5 files changed

+29
-20
lines changed

5 files changed

+29
-20
lines changed

ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ EXTERNAL SOURCES:
1414
:path: ".symlinks/plugins/flutter_webview_plugin/ios"
1515

1616
SPEC CHECKSUMS:
17-
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
17+
Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c
1818
flutter_webview_plugin: ed9e8a6a96baf0c867e90e1bce2673913eeac694
1919

2020
PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c
2121

22-
COCOAPODS: 1.9.3
22+
COCOAPODS: 1.10.2

ios/Runner.xcodeproj/project.pbxproj

+20-13
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 46;
6+
objectVersion = 51;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -121,7 +121,6 @@
121121
B3A95C871E6C04CF4519FEE7 /* Pods-Runner.release.xcconfig */,
122122
8EC4BCDDC11AF515D04E274B /* Pods-Runner.profile.xcconfig */,
123123
);
124-
name = Pods;
125124
path = Pods;
126125
sourceTree = "<group>";
127126
};
@@ -253,15 +252,12 @@
253252
buildActionMask = 2147483647;
254253
files = (
255254
);
256-
inputPaths = (
257-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh",
258-
"${PODS_ROOT}/../Flutter/Flutter.framework",
259-
"${BUILT_PRODUCTS_DIR}/flutter_webview_plugin/flutter_webview_plugin.framework",
255+
inputFileListPaths = (
256+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
260257
);
261258
name = "[CP] Embed Pods Frameworks";
262-
outputPaths = (
263-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework",
264-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/flutter_webview_plugin.framework",
259+
outputFileListPaths = (
260+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
265261
);
266262
runOnlyForDeploymentPostprocessing = 0;
267263
shellPath = /bin/sh;
@@ -365,7 +361,10 @@
365361
"$(PROJECT_DIR)/Flutter",
366362
);
367363
INFOPLIST_FILE = Runner/Info.plist;
368-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
364+
LD_RUNPATH_SEARCH_PATHS = (
365+
"$(inherited)",
366+
"@executable_path/Frameworks",
367+
);
369368
LIBRARY_SEARCH_PATHS = (
370369
"$(inherited)",
371370
"$(PROJECT_DIR)/Flutter",
@@ -478,7 +477,8 @@
478477
MTL_ENABLE_DEBUG_INFO = NO;
479478
SDKROOT = iphoneos;
480479
SUPPORTED_PLATFORMS = iphoneos;
481-
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
480+
SWIFT_COMPILATION_MODE = wholemodule;
481+
SWIFT_OPTIMIZATION_LEVEL = "-O";
482482
TARGETED_DEVICE_FAMILY = "1,2";
483483
VALIDATE_PRODUCT = YES;
484484
};
@@ -497,7 +497,10 @@
497497
"$(PROJECT_DIR)/Flutter",
498498
);
499499
INFOPLIST_FILE = Runner/Info.plist;
500-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
500+
LD_RUNPATH_SEARCH_PATHS = (
501+
"$(inherited)",
502+
"@executable_path/Frameworks",
503+
);
501504
LIBRARY_SEARCH_PATHS = (
502505
"$(inherited)",
503506
"$(PROJECT_DIR)/Flutter",
@@ -518,13 +521,17 @@
518521
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
519522
CLANG_ENABLE_MODULES = YES;
520523
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
524+
DEVELOPMENT_TEAM = 54M67YCQ7Q;
521525
ENABLE_BITCODE = NO;
522526
FRAMEWORK_SEARCH_PATHS = (
523527
"$(inherited)",
524528
"$(PROJECT_DIR)/Flutter",
525529
);
526530
INFOPLIST_FILE = Runner/Info.plist;
527-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
531+
LD_RUNPATH_SEARCH_PATHS = (
532+
"$(inherited)",
533+
"@executable_path/Frameworks",
534+
);
528535
LIBRARY_SEARCH_PATHS = (
529536
"$(inherited)",
530537
"$(PROJECT_DIR)/Flutter",

ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Runner/Info.plist

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<dict>
55
<key>CFBundleDevelopmentRegion</key>
66
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleDisplayName</key>
8+
<string>GetWidget</string>
79
<key>CFBundleExecutable</key>
810
<string>$(EXECUTABLE_NAME)</string>
911
<key>CFBundleIdentifier</key>

pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: gf_app
22
description: A GetWidget Demo App
33

4-
version: 1.0.8+9
4+
version: 1.0.9+10
55

66
environment:
7-
sdk: '>=2.12.0 <3.0.0'
7+
sdk: ">=2.12.0 <3.0.0"
88

99
dependencies:
1010
flutter:
1111
sdk: flutter
1212
getwidget: ^2.0.4
13-
#path: D:\Flutter_Apps\Get_Widget\getflutter\
13+
#path: D:\Flutter_Apps\Get_Widget\getflutter\
1414
flutter_webview_plugin: ^0.4.0
1515
cupertino_icons: ^1.0.3
1616

@@ -108,4 +108,4 @@ flutter:
108108
- family: GFIconsneww
109109
fonts:
110110
- asset: lib/assets/fonts/new.ttf
111-
weight: 400
111+
weight: 400

0 commit comments

Comments
 (0)