Skip to content

Commit

Permalink
0.6.3.1 publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyun-J committed Jan 22, 2021
1 parent e5cf97f commit 77f3a35
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion FlexHybridApp.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Pod::Spec.new do |spec|

spec.name = "FlexHybridApp"
spec.version = "0.6.3"
spec.version = "0.6.3.1"
spec.summary = "FlexibleHybridApp-iOS"
spec.ios.deployment_target = '9.0'
spec.swift_version = '5.3.2'
Expand Down
8 changes: 4 additions & 4 deletions framework/flexhybridapp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 27;
CURRENT_PROJECT_VERSION = 28;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 7V78M894K4;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -327,7 +327,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.6.3;
MARKETING_VERSION = 0.6.3.1;
PRODUCT_BUNDLE_IDENTIFIER = app.dvkyun.flexhybridapp;
PRODUCT_NAME = FlexHybridApp;
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -345,7 +345,7 @@
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 27;
CURRENT_PROJECT_VERSION = 28;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -359,7 +359,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.6.3;
MARKETING_VERSION = 0.6.3.1;
PRODUCT_BUNDLE_IDENTIFIER = app.dvkyun.flexhybridapp;
PRODUCT_NAME = FlexHybridApp;
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
2 changes: 1 addition & 1 deletion framework/flexhybridapp/js/FlexHybridiOS.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions framework/flexhybridapp/lib/origin/iOS.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
Object.defineProperty(window, "$flex", { value: {}, writable: false, enumerable: true });
Object.defineProperties($flex,
{
version: { value: '0.6.3', writable: false, enumerable: true },
version: { value: '0.6.3.1', writable: false, enumerable: true },
isAndroid: { value: false, writable: false, enumerable: true },
isiOS: { value: true, writable: false, enumerable: true },
device: { value: device, writable: false, enumerable: true },
Expand All @@ -60,7 +60,7 @@
convertBoolForiOS: { value: function(v) {
if(typeof v == "boolean") {
return booleanToboolData(v);
} else if(typeof v == "object") {
} else if(typeof v == "object" && v) {
const keys = Object.keys(v);
for(let i = 0; i < keys.length; i++) {
v[keys[i]] = $flex.convertBoolForiOS(v[keys[i]]);
Expand Down

0 comments on commit 77f3a35

Please sign in to comment.