Skip to content
Merged
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
8 changes: 4 additions & 4 deletions ACON-iOS/ACON-iOS.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2400,7 +2400,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 2025.0621.1900;
CURRENT_PROJECT_VERSION = 2025.0804.0047;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = KX5Q77JSUF;
Expand All @@ -2419,7 +2419,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.0.0;
MARKETING_VERSION = 2.1.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.ACON.ACON-iOS";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -2443,7 +2443,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 2025.0621.1900;
CURRENT_PROJECT_VERSION = 2025.0804.0047;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = KX5Q77JSUF;
GENERATE_INFOPLIST_FILE = NO;
Expand All @@ -2461,7 +2461,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.0.0;
MARKETING_VERSION = 2.1.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.ACON.ACON-iOS";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
4 changes: 2 additions & 2 deletions ACON-iOS/ACON-iOS/Global/Settings/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>2.0.0</string>
<string>2.1.0</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -54,7 +54,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>2025.0621.1900</string>
<string>2025.0804.0047</string>
<key>GADApplicationIdentifier</key>
<string>${GAD_APPLICATION_IDENTIFIER}</string>
<key>GAD_AD_UNIT_ID</key>
Expand Down
14 changes: 3 additions & 11 deletions ACON-iOS/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,9 @@ platform :ios do
app_identifier: ENV["APP_IDENTIFIER"]
)

# CocoaPods 설치
cocoapods

# 개발용 빌드
gym(
workspace: ENV["WORKSPACE_NAME"],
project: ENV["WORKSPACE_NAME"],
scheme: ENV["SCHEME_NAME"],
configuration: "Debug",
export_method: "development"
Expand Down Expand Up @@ -82,9 +79,6 @@ platform :ios do
api_key: api_key
)

# CocoaPods 설치
cocoapods

if version_number
puts "버전 정보: #{version_number}"
set_version(version: version_number)
Expand All @@ -98,7 +92,7 @@ platform :ios do

# 앱 빌드
gym(
workspace: ENV["WORKSPACE_NAME"],
project: ENV["WORKSPACE_NAME"],
scheme: ENV["SCHEME_NAME"],
configuration: "Release",
export_method: "app-store"
Expand Down Expand Up @@ -134,8 +128,6 @@ platform :ios do
api_key: api_key
)

# CocoaPods 설치
cocoapods

if version_number
# 특정 버전으로 설정
Expand All @@ -150,7 +142,7 @@ platform :ios do

# 앱 빌드
gym(
workspace: ENV["WORKSPACE_NAME"],
project: ENV["WORKSPACE_NAME"],
scheme: ENV["SCHEME_NAME"],
configuration: "Release",
export_method: "app-store"
Expand Down