Skip to content

Commit 4aebb76

Browse files
author
George Apostu
committed
Podfile update, warning fix
1 parent 1230c53 commit 4aebb76

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

LockdowniOS.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -3577,7 +3577,7 @@
35773577
CODE_SIGN_IDENTITY = "iPhone Developer";
35783578
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
35793579
CODE_SIGN_STYLE = Automatic;
3580-
CURRENT_PROJECT_VERSION = 5;
3580+
CURRENT_PROJECT_VERSION = 1;
35813581
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
35823582
DEVELOPMENT_TEAM = V8J3Z26F6Z;
35833583
ENABLE_BITCODE = NO;
@@ -3596,7 +3596,7 @@
35963596
"$(inherited)",
35973597
"@executable_path/Frameworks",
35983598
);
3599-
MARKETING_VERSION = 2.0.12;
3599+
MARKETING_VERSION = 2.0.13;
36003600
PRODUCT_BUNDLE_IDENTIFIER = com.confirmed.lockdown;
36013601
PRODUCT_NAME = "$(TARGET_NAME)";
36023602
PROVISIONING_PROFILE = "";
@@ -3617,7 +3617,7 @@
36173617
CODE_SIGN_IDENTITY = "iPhone Developer";
36183618
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
36193619
CODE_SIGN_STYLE = Automatic;
3620-
CURRENT_PROJECT_VERSION = 5;
3620+
CURRENT_PROJECT_VERSION = 1;
36213621
DEVELOPMENT_TEAM = V8J3Z26F6Z;
36223622
ENABLE_BITCODE = NO;
36233623
FRAMEWORK_SEARCH_PATHS = (
@@ -3635,7 +3635,7 @@
36353635
"$(inherited)",
36363636
"@executable_path/Frameworks",
36373637
);
3638-
MARKETING_VERSION = 2.0.12;
3638+
MARKETING_VERSION = 2.0.13;
36393639
PRODUCT_BUNDLE_IDENTIFIER = com.confirmed.lockdown;
36403640
PRODUCT_NAME = "$(TARGET_NAME)";
36413641
PROVISIONING_PROFILE = "";

LockdowniOS/BaseViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ open class BaseViewController: UIViewController, MFMailComposeViewControllerDele
309309
}
310310

311311
func sendMessage(_ message: String, subject: String) {
312-
let recipient = "team@lockdownprivacy.com"
312+
let recipient = "team@lockdownprivacy.com" // TODO: change email
313313
if MFMailComposeViewController.canSendMail() {
314314
let composeVC = MFMailComposeViewController()
315315
composeVC.mailComposeDelegate = self

LockdowniOS/Loader.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ protocol Loadable {
1616
}
1717

1818
final class LoadingView: UIView {
19-
private let activityIndicatorView = UIActivityIndicatorView(style: .whiteLarge)
20-
19+
private let activityIndicatorView = UIActivityIndicatorView(style: .large)
20+
2121
override func layoutSubviews() {
2222
super.layoutSubviews()
2323

Podfile

+8-8
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ end
1818

1919
target :'LockdownTunnel' do
2020
pod 'PromiseKit'
21-
pod 'KeychainAccess'
2221
pod 'SwiftyStoreKit', '0.13.1'
22+
pod 'KeychainAccess'
2323
end
2424

2525
target :'Lockdown VPN Widget' do
@@ -39,10 +39,10 @@ target :'LockdownTests' do
3939
pod 'SnapshotTesting', :git => 'https://github.com/pointfreeco/swift-snapshot-testing.git', :commit => '8e9f685'
4040
end
4141

42-
# post_install do |installer|
43-
# installer.pods_project.targets.each do |target|
44-
# target.build_configurations.each do |config|
45-
# config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
46-
# end
47-
# end
48-
# end
42+
post_install do |installer|
43+
installer.pods_project.targets.each do |target|
44+
target.build_configurations.each do |config|
45+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
46+
end
47+
end
48+
end

0 commit comments

Comments
 (0)