-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: 이전 버전 커밋 * feat: FirebaseCrashlytics 연결 * feat: Script 변경 * feat: analatics 조건 추가 * feat: gitignore 수정
- Loading branch information
1 parent
dcb84ee
commit 456a8fb
Showing
18 changed files
with
230 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -209,4 +209,5 @@ iOSInjectionProject/ | |
|
||
# Custom | ||
XCConfig/** | ||
**FakeToken** | ||
**FakeToken** | ||
**/GoogleService-Info.plist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[tools] | ||
tuist = "4.9.0" | ||
tuist = "latest" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.9.0 | ||
4.21.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
import ProjectDescription | ||
import ProjectDescriptionHelpers | ||
|
||
let project = Project.makeModule( | ||
name: "SSFirebase", | ||
targets: .custom( | ||
name: "SSFirebase", | ||
product: .staticLibrary, | ||
dependencies: [ | ||
.external(name: "FirebaseAnalytics"), | ||
.external(name: "FirebaseCrashlytics"), | ||
] | ||
// additionalScripts: [.firebase] | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// Content of KeepSources.swift |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// | ||
// Target+Settings.swift | ||
// ProjectDescriptionHelpers | ||
// | ||
// Created by MaraMincho on 7/25/24. | ||
// | ||
|
||
import Foundation | ||
import ProjectDescription | ||
|
||
|
||
extension Settings { | ||
static var `default`: Self { | ||
.settings( | ||
base: [ | ||
"DEVELOPMENT_TEAM": "2G5Z92682P", | ||
"ENABLE_USER_SCRIPT_SANDBOXING": "No", // SandBoxingError | ||
"ENABLE_MODULE_VERIFIER": "No", // Enable module Verifier | ||
"MODULE_VERIFIER_SUPPORTED_LANGUAGES": "No", | ||
"DEBUG_INFORMATION_FORMAT": "dwarf-with-dsym", // For Firebase | ||
"OTHER_LDFLAGS": "$(inherited) -ObjC", // For Firebase , | ||
"LD_VERIFY_BITCODE" : "No" | ||
// "CLANG_ENABLE_MODULES": "Yes" | ||
], | ||
|
||
configurations: [ | ||
.debug(name: .debug), | ||
.release(name: .release), | ||
] | ||
) | ||
} | ||
} |
Oops, something went wrong.