Skip to content

Fetched project marketing version. #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Guard/Guard.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,7 @@
"$(PROJECT_DIR)$(LOCAL_LIBRARY_DIR)",
);
MACH_O_TYPE = mh_dylib;
MARKETING_VERSION = 1.4.9.1;
MARKETING_VERSION = 1.4.10;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = cn.authing.Guard;
Expand Down Expand Up @@ -1304,7 +1304,7 @@
"$(PROJECT_DIR)$(LOCAL_LIBRARY_DIR)",
);
MACH_O_TYPE = mh_dylib;
MARKETING_VERSION = 1.4.9.1;
MARKETING_VERSION = 1.4.10;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = cn.authing.Guard;
Expand Down
2 changes: 1 addition & 1 deletion Guard/Guard/Const.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ typealias AuthCallback = (Int, String?, UserInfo?) -> Void

public class Const: NSObject {

public static let SDK_VERSION: String = (Bundle(identifier: "cn.authing.Guard")?.infoDictionary?["CFBundleShortVersionString"] as? String) ?? "1.4.9.1"
public static let SDK_VERSION: String = (Bundle(identifier: "cn.authing.Guard")?.infoDictionary?["CFBundleShortVersionString"] as? String) ?? "1.4.10"

public static let Color_Authing_Main = UIColor(red: 33/255.0, green: 90/255.0, blue: 229/255.0, alpha: 1)
public static let Color_Button_Pressed = UIColor(red: 0.039, green: 0.227, blue: 0.792, alpha: 1)
Expand Down