Skip to content

Commit 11d2c2e

Browse files
committed
Xcode 11 & Swift 5.1
1 parent ca6641c commit 11d2c2e

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

Router.framework.zip

1.48 MB
Binary file not shown.

Router.xcodeproj/project.pbxproj

+3
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
developmentRegion = English;
109109
hasScannedForEncodings = 0;
110110
knownRegions = (
111+
English,
111112
en,
112113
);
113114
mainGroup = 997CC24B1E64079100250EB1;
@@ -272,6 +273,7 @@
272273
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
273274
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
274275
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
276+
MARKETING_VERSION = 1.3.0;
275277
PRODUCT_BUNDLE_IDENTIFIER = com.freshOS.Router;
276278
PRODUCT_NAME = "$(TARGET_NAME)";
277279
SKIP_INSTALL = YES;
@@ -294,6 +296,7 @@
294296
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
295297
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
296298
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
299+
MARKETING_VERSION = 1.3.0;
297300
PRODUCT_BUNDLE_IDENTIFIER = com.freshOS.Router;
298301
PRODUCT_NAME = "$(TARGET_NAME)";
299302
SKIP_INSTALL = YES;

Sources/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.2.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

Sources/Router.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public protocol IsRouter {
2727
}
2828

2929
public extension UIViewController {
30-
public func navigate(_ navigation: Navigation) {
30+
func navigate(_ navigation: Navigation) {
3131
Router.default.navigate(navigation, from: self)
3232
}
3333
}

0 commit comments

Comments
 (0)