Skip to content
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
8 changes: 4 additions & 4 deletions ChatApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 51;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -586,7 +586,7 @@
};
};
buildConfigurationList = 17111D3B2128F29C008C7FBE /* Build configuration list for PBXProject "ChatApp" */;
compatibilityVersion = "Xcode 9.3";
compatibilityVersion = "Xcode 12.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
Expand Down Expand Up @@ -894,7 +894,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = ChatApp/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -914,7 +914,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = ChatApp/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.1;
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
2 changes: 1 addition & 1 deletion ChatApp/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2023 Instamobile. All rights reserved.
//

import Firebase
import FirebaseCore
import UIKit

@UIApplicationMain
Expand Down
2 changes: 1 addition & 1 deletion ChatApp/Core/Chat/Models/ATChatMessage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2018 Instamobile. All rights reserved.
//

import Firebase
import FirebaseCore
import FirebaseFirestore
import MessageKit

Expand Down
3 changes: 2 additions & 1 deletion ChatApp/Core/Chat/Store/ATCRemoteData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
//

import Foundation
import Firebase
import FirebaseCore
import FirebaseFirestore

/// Sample class that gets all channels from the remote data store.
class ATCRemoteData{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import UIKit
import Photos
import Firebase
import FirebaseCore
import MessageKit
import FirebaseFirestore
import FirebaseStorage
Expand Down
4 changes: 3 additions & 1 deletion ChatApp/Core/Helpers/ATCGenericFirebaseDataSource.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
// Copyright © 2017 iOS App Templates. All rights reserved.
//

import Firebase
import FirebaseCore
import FirebaseFirestore
import FirebaseDatabase

let kItemsPerPage: UInt = 10

Expand Down
8 changes: 3 additions & 5 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
platform :ios, '14.0'

target 'ChatApp' do
use_frameworks!

# Pods for ChatApp
pod 'MessageKit'
pod 'FacebookCore'
pod 'FacebookLogin'
pod 'FacebookShare'
pod 'FBSDKLoginKit'

pod 'Firebase/Core'
pod 'Firebase/Auth'
Expand All @@ -19,4 +17,4 @@ target 'ChatApp' do
pod 'Alamofire'
pod 'Kingfisher'

end
end