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
5 changes: 2 additions & 3 deletions App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ private let appTestsScheme = Scheme.scheme(

private let appTarget = Target.target(
name: "App",
destinations: .iOS,
destinations: [.iPhone],
product: .app,
bundleId: bundleId,
deploymentTargets: deploymentTargets,
Expand All @@ -45,7 +45,6 @@ private let appTarget = Target.target(
),
"UIUserInterfaceStyle": Plist.Value(stringLiteral: style),
"NSMicrophoneUsageDescription": "음성 메모를 녹음하기 위해 마이크 권한이 필요합니다.",
"NSSpeechRecognitionUsageDescription": "음성을 텍스트로 변환하기 위해 음성 인식 권한이 필요합니다.",
"ITSAppUsesNonExemptEncryption": false,
"UIBackgroundModes": ["audio"]
]
Expand Down Expand Up @@ -80,7 +79,7 @@ private let appTarget = Target.target(

private let appTestsTarget = Target.target(
name: "AppTests",
destinations: .iOS,
destinations: [.iPhone],
product: .unitTests,
bundleId: "\(bundleId).AppTests",
deploymentTargets: deploymentTargets,
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed App/Resources/Assets.xcassets/AppIcon.appiconset/16.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
218 changes: 0 additions & 218 deletions App/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json

This file was deleted.

21 changes: 21 additions & 0 deletions App/Resources/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0//EN">
<plist version="1.0">
<dict>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
</array>
</dict>
</array>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyTrackingDomains</key>
<array/>
</dict>
</plist>
Binary file removed App/Resources/appstore.png
Diff not rendered.
Binary file removed App/Resources/playstore.png
Diff not rendered.
4 changes: 2 additions & 2 deletions Core/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private let coreTestsScheme = Scheme.scheme(

private let coreTarget = Target.target(
name: "Core",
destinations: .iOS,
destinations: [.iPhone],
product: .framework,
bundleId: "\(bundleId).Core",
deploymentTargets: deploymentTargets,
Expand All @@ -38,7 +38,7 @@ private let coreTarget = Target.target(

private let coreTestsTarget = Target.target(
name: "CoreTests",
destinations: .iOS,
destinations: [.iPhone],
product: .unitTests,
bundleId: "\(bundleId).CoreTests",
deploymentTargets: deploymentTargets,
Expand Down
2 changes: 1 addition & 1 deletion Data/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ private let dataScheme = Scheme.scheme(

private let dataTarget = Target.target(
name: "Data",
destinations: .iOS,
destinations: [.iPhone],
product: .framework,
bundleId: "\(bundleId).Data",
deploymentTargets: deploymentTargets,
Expand Down
6 changes: 3 additions & 3 deletions Domain/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private let domainTestsScheme = Scheme.scheme(

private let domainTarget = Target.target(
name: "Domain",
destinations: .iOS,
destinations: [.iPhone],
product: .framework,
bundleId: "\(bundleId).Domain",
deploymentTargets: deploymentTargets,
Expand All @@ -40,7 +40,7 @@ private let domainTarget = Target.target(

private let domainTestingTarget = Target.target(
name: "DomainTesting",
destinations: .iOS,
destinations: [.iPhone],
product: .framework,
bundleId: "\(bundleId).DomainTesting",
deploymentTargets: deploymentTargets,
Expand All @@ -57,7 +57,7 @@ private let domainTestingTarget = Target.target(

private let domainTestsTarget = Target.target(
name: "DomainTests",
destinations: .iOS,
destinations: [.iPhone],
product: .unitTests,
bundleId: "\(bundleId).DomainTests",
deploymentTargets: deploymentTargets,
Expand Down
4 changes: 2 additions & 2 deletions Presentation/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private let presentationTestsScheme = Scheme.scheme(

private let presentationTarget = Target.target(
name: "Presentation",
destinations: .iOS,
destinations: [.iPhone],
product: .framework,
bundleId: "\(bundleId).Presentation",
deploymentTargets: deploymentTargets,
Expand All @@ -50,7 +50,7 @@ private let presentationTarget = Target.target(

private let presentationTestsTarget = Target.target(
name: "PresentationTests",
destinations: .iOS,
destinations: [.iPhone],
product: .unitTests,
bundleId: "\(bundleId).PresentationTests",
deploymentTargets: deploymentTargets,
Expand Down
Loading