Skip to content

Commit

Permalink
Move: 폴더 경로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeonghwan committed May 21, 2024
1 parent b20a208 commit 7f6f8a5
Show file tree
Hide file tree
Showing 10 changed files with 151 additions and 6 deletions.
20 changes: 14 additions & 6 deletions Pickle/Pickle.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@
9675765B2B0CDCA4004957AD /* Pickle-release.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Pickle-release.app"; sourceTree = BUILT_PRODUCTS_DIR; };
9675765C2B0CDCA4004957AD /* Pickle-release-info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Pickle-release-info.plist"; path = "/Users/baghyeonghwan/final/final-pickle/Pickle/Pickle-release-info.plist"; sourceTree = "<absolute>"; };
9686010E2BED0FEE0067FD36 /* Car.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Car.json; sourceTree = "<group>"; };
968601162BED15C70067FD36 /* TaskLiveActivityExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = TaskLiveActivityExtension.entitlements; sourceTree = "<group>"; };
968601162BED15C70067FD36 /* TaskLiveActivityExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = TaskLiveActivityExtension.entitlements; path = ../../TaskLiveActivityExtension.entitlements; sourceTree = "<group>"; };
9688ADDA2B516D3B000F2B3A /* TodoEmptyView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TodoEmptyView.swift; sourceTree = "<group>"; };
9688ADDC2B5170E6000F2B3A /* PizzaSliceDescriptionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PizzaSliceDescriptionView.swift; sourceTree = "<group>"; };
9688BBD92BECEF8900BA3B3B /* LiveActivityCircleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveActivityCircleView.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -644,7 +644,6 @@
2137D56C2AC1459C00AFE225 = {
isa = PBXGroup;
children = (
968601162BED15C70067FD36 /* TaskLiveActivityExtension.entitlements */,
2137D5872AC1460F00AFE225 /* .swiftlint.yml */,
9693D15F2BF4683B00B85F56 /* Pickle.xctestplan */,
2137D5772AC1459C00AFE225 /* Pickle */,
Expand Down Expand Up @@ -1121,6 +1120,15 @@
path = Todo;
sourceTree = "<group>";
};
9691C2302BFCD472004334DD /* _plist */ = {
isa = PBXGroup;
children = (
B0B5E6BB2ADA5A360096F677 /* Info.plist */,
9675765C2B0CDCA4004957AD /* Pickle-release-info.plist */,
);
path = _plist;
sourceTree = "<group>";
};
969B88FC2BEB9F0000538D12 /* TaskLiveActivity */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -1278,11 +1286,11 @@
96B4B3432AE9524C006A15E3 /* Resource */ = {
isa = PBXGroup;
children = (
9691C2302BFCD472004334DD /* _plist */,
2137D57E2AC1459D00AFE225 /* Preview Content */,
9686010E2BED0FEE0067FD36 /* Car.json */,
9625B49F2BF24F8E004B7583 /* PizzaPickle.json */,
B0B5E6BB2ADA5A360096F677 /* Info.plist */,
9675765C2B0CDCA4004957AD /* Pickle-release-info.plist */,
968601162BED15C70067FD36 /* TaskLiveActivityExtension.entitlements */,
B0B5E6BC2ADA5B820096F677 /* Pickle.entitlements */,
2137D57C2AC1459D00AFE225 /* Assets.xcassets */,
9670FF792BE8E37F00AF5E4D /* PrivacyInfo.xcprivacy */,
Expand Down Expand Up @@ -2223,7 +2231,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.3;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.ddudios.realpizza;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -2268,7 +2276,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.3;
MARKETING_VERSION = 1.1.0;
PRODUCT_BUNDLE_IDENTIFIER = com.ddudios.realpizza;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
30 changes: 30 additions & 0 deletions Pickle/Pickle/Resource/.swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
disabled_rules: # 아래 룰은 검사 대상에서 제외하겠다는 뜻
# 라인 뒤에 공백이 없어야함 - https://realm.github.io/SwiftLint/trailing_whitespace.html
- trailing_whitespace

# XCTFail Message는 설명을 포함해야함 - https://realm.github.io/SwiftLint/xctfail_message.html
- xctfail_message

# 함수 파라미터가 너무 많으면 안됨 - https://realm.github.io/SwiftLint/function_parameter_count.html
- function_parameter_count

# 오래된 C 함수보다 새로운 sturct initializer를 사용하기를 권장 - https://realm.github.io/SwiftLint/legacy_constructor.html
- legacy_constructor

# 강제 캐스팅은 피해야함 - https://realm.github.io/SwiftLint/force_cast.html
- force_cast

# 배열이나 딕셔너리에서 컴마로 끝나지 않도록 함 - https://realm.github.io/SwiftLint/trailing_comma.html
- trailing_comma

# 강제 트라이는 피해야함 - https://realm.github.io/SwiftLint/force_try.html
- force_try

# 식별자 이름 규칙 - https://realm.github.io/SwiftLint/identifier_name.html
- identifier_name

# 타입/함수/파일 등의 코드길이 제한을 변경하겠다는 뜻
type_body_length: 250
line_length: 150
function_body_length: 50
file_length: 500
1 change: 1 addition & 0 deletions Pickle/Pickle/Resource/Lottie/Car.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"nm":"vehicle","mn":"","layers":[{"ty":4,"nm":"Shape Layer 2","mn":"","sr":1,"st":0,"op":44.0000017921567,"ip":0,"hd":false,"cl":"","ln":"","ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[444.44444444444446,444.44444444444446,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[128.88888888888889,-8.88888888888889,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 2","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":20,"ix":4},"s":{"a":0,"k":[7.789,1.284],"ix":2}},{"ty":"fl","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1,1,1],"t":0},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0.9333,0.1922,0.1412],"t":14},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0.9333,0.1922,0.1412],"t":15.0000006109625}],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[-3.889,0.001],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1,100],"t":15},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[116,100],"t":17},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[116,100],"t":26},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[1,100],"t":28.0000011404634}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[2.391,10.159],"t":17,"ti":[4.464,0],"to":[-3,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-15.609,10.159],"t":27,"ti":[1.464,0],"to":[-4.464,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-24.395,10.159],"t":28.0000011404634}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":21},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":22},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":28},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":29.0000011811942}],"ix":7}}]}],"ind":1},{"ty":4,"nm":"Shape Layer 1","mn":"","sr":1,"st":0,"op":44.0000017921567,"ip":0,"hd":false,"cl":"","ln":"","ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[444.44444444444446,444.44444444444446,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[128.88888888888889,80,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Group","nm":"Rectangle 2","ix":1,"cix":2,"np":3,"it":[{"ty":"rc","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Rect","nm":"Rectangle Path 1","d":1,"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":20,"ix":4},"s":{"a":0,"k":[7.789,1.284],"ix":2}},{"ty":"fl","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1,1,1],"t":0},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0.9333,0.1922,0.1412],"t":5},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[0.9333,0.1922,0.1412],"t":6.00000024438501}],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[-3.889,0.001],"ix":1},"s":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[1,100],"t":6},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[116,100],"t":8},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[116,100],"t":17},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[1,100],"t":19.0000007738859}],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[2.391,10.159],"t":8,"ti":[4.464,0],"to":[-3,0]},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[-15.609,10.159],"t":18,"ti":[1.464,0],"to":[-4.464,0]},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[-24.395,10.159],"t":19.0000007738859}],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":12},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[100],"t":13},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[0],"t":19},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[100],"t":20.0000008146167}],"ix":7}}]}],"ind":2},{"ty":4,"nm":"tyre1 Outlines","mn":"","sr":1,"st":0,"op":44.0000017921567,"ip":0,"hd":false,"cl":"","ln":"","ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[2.623,2.584,0],"ix":1},"s":{"a":0,"k":[444.44444444444446,444.44444444444446,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[100.58666666666667,96.17333333333333,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Group","nm":"Group 1","ix":1,"cix":2,"np":4,"it":[{"ty":"sh","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0.757,0],[0,-0.735],[-0.757,0],[0,0.735]],"o":[[-0.757,0],[0,0.735],[0.757,0],[0,-0.735]],"v":[[0.001,-1.333],[-1.372,-0.001],[0.001,1.333],[1.372,-0.001]]},"ix":2}},{"ty":"sh","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":2,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[1.308,0],[0,1.287],[-1.309,0],[0,-1.286]],"o":[[-1.309,0],[0,-1.286],[1.308,0],[0,1.287]],"v":[[0.001,2.333],[-2.372,-0.001],[0.001,-2.333],[2.372,-0.001]]},"ix":2}},{"ty":"mm","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Filter - Merge","nm":"Merge Paths 1","mm":1},{"ty":"fl","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.8627,0.1961,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[2.623,2.584],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":3},{"ty":4,"nm":"vehicle Outlines","mn":"","sr":1,"st":0,"op":44.0000017921567,"ip":0,"hd":false,"cl":"","ln":"","ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[9.179,5.792,0],"ix":1},"s":{"a":0,"k":[444.44444444444446,444.44444444444446,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":1,"k":[{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[79.77333333333334,73.76444444444445,0],"t":0},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[79.77333333333334,69.32000000000001,0],"t":5},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[79.77333333333334,73.76444444444445,0],"t":10},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[79.77333333333334,69.32000000000001,0],"t":15},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[79.77333333333334,73.76444444444445,0],"t":20},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[79.77333333333334,69.32000000000001,0],"t":25},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[79.77333333333334,73.76444444444445,0],"t":30},{"o":{"x":0.333,"y":0},"i":{"x":0.667,"y":1},"s":[79.77333333333334,69.32000000000001,0],"t":35},{"o":{"x":0.167,"y":0.167},"i":{"x":0.833,"y":0.833},"s":[79.77333333333334,73.76444444444445,0],"t":40.0000016292334}],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Group","nm":"Group 1","ix":1,"cix":2,"np":6,"it":[{"ty":"sh","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0.276,0],[0,0],[0,0.276],[-0.277,0],[0,0],[0,-0.276]],"o":[[0,0],[-0.277,0],[0,-0.276],[0,0],[0.276,0],[0,0.276]],"v":[[2.811,5.542],[-2.809,5.542],[-3.309,5.042],[-2.809,4.542],[2.811,4.542],[3.311,5.042]]},"ix":2}},{"ty":"sh","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":2,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-7.684,-0.958],[-0.499,-0.958],[-0.499,-4.542],[-6.219,-4.542]]},"ix":2}},{"ty":"sh","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 3","ix":3,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.501,-0.958],[4.566,-0.958],[1.637,-4.542],[0.501,-4.542]]},"ix":2}},{"ty":"sh","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 4","ix":4,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0.277,0],[0,0],[0,0.276],[-0.276,0],[0,0],[0,0],[0.256,0.252],[0.363,0],[0,0],[0.002,0],[0,0],[0,0],[0,0],[0,-0.276],[0.276,0],[0,0],[0,0.276],[0,0],[-0.007,0.036],[-0.014,0.033],[0,0],[-0.203,0],[0,0],[-0.095,-0.117],[0,0],[0,0],[-0.448,-0.439],[0,-0.615],[0,0]],"o":[[0,0],[-0.276,0],[0,-0.276],[0,0],[0,0],[0,-0.354],[-0.257,-0.25],[0,0],[-0.003,0],[0,0],[0,0],[0,0],[0.276,0],[0,0.276],[0,0],[-0.277,0],[0,0],[-0.001,-0.036],[0.007,-0.036],[0,0],[0.077,-0.188],[0,0],[0.151,0],[0,0],[0,0],[0.631,0],[0.444,0.435],[0,0],[0,0.276]],"v":[[8.428,5.542],[6.557,5.542],[6.057,5.042],[6.557,4.542],[7.928,4.542],[7.928,1.374],[7.531,0.436],[6.557,0.042],[5.624,0.042],[5.617,0.042],[-7.928,0.042],[-7.928,4.542],[-6.555,4.542],[-6.055,5.042],[-6.555,5.542],[-8.428,5.542],[-8.928,5.042],[-8.928,-0.447],[-8.919,-0.555],[-8.887,-0.658],[-7.018,-5.23],[-6.555,-5.542],[1.874,-5.542],[2.26,-5.357],[5.857,-0.958],[6.557,-0.958],[8.23,-0.279],[8.928,1.374],[8.928,5.042]]},"ix":2}},{"ty":"mm","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Filter - Merge","nm":"Merge Paths 1","mm":1},{"ty":"fl","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.8627,0.1961,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[9.179,5.792],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":4},{"ty":4,"nm":"tyre2 Outlines","mn":"","sr":1,"st":0,"op":44.0000017921567,"ip":0,"hd":false,"cl":"","ln":"","ddd":0,"bm":0,"hasMask":false,"ao":0,"ks":{"a":{"a":0,"k":[2.623,2.584,0],"ix":1},"s":{"a":0,"k":[444.44444444444446,444.44444444444446,100],"ix":6},"sk":{"a":0,"k":0},"p":{"a":0,"k":[58.968888888888884,96.17333333333333,0],"ix":2},"r":{"a":0,"k":0,"ix":10},"sa":{"a":0,"k":0},"o":{"a":0,"k":100,"ix":11}},"ef":[],"shapes":[{"ty":"gr","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Group","nm":"Group 1","ix":1,"cix":2,"np":4,"it":[{"ty":"sh","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 1","ix":1,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[0.757,0],[0,-0.735],[-0.757,0],[0,0.735]],"o":[[-0.757,0],[0,0.735],[0.757,0],[0,-0.735]],"v":[[0,-1.333],[-1.373,-0.001],[0,1.333],[1.373,-0.001]]},"ix":2}},{"ty":"sh","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Shape - Group","nm":"Path 2","ix":2,"d":1,"ks":{"a":0,"k":{"c":true,"i":[[1.309,0],[0,1.287],[-1.309,0],[0,-1.286]],"o":[[-1.309,0],[0,-1.286],[1.309,0],[0,1.287]],"v":[[0,2.333],[-2.373,-0.001],[0,-2.333],[2.373,-0.001]]},"ix":2}},{"ty":"mm","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Filter - Merge","nm":"Merge Paths 1","mm":1},{"ty":"fl","bm":0,"cl":"","ln":"","hd":false,"mn":"ADBE Vector Graphic - Fill","nm":"Fill 1","c":{"a":0,"k":[0.8627,0.1961,0.1412],"ix":4},"r":1,"o":{"a":0,"k":100,"ix":5}},{"ty":"tr","a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"sk":{"a":0,"k":0,"ix":4},"p":{"a":0,"k":[2.623,2.584],"ix":2},"r":{"a":0,"k":0,"ix":6},"sa":{"a":0,"k":0,"ix":5},"o":{"a":0,"k":100,"ix":7}}]}],"ind":5}],"ddd":0,"h":160,"w":160,"meta":{"a":"","k":"","d":"","g":"LottieFiles AE 3.1.1","tc":"#000000"},"v":"4.8.0","fr":29.9700012207031,"op":41.0000016699642,"ip":0,"assets":[]}
1 change: 1 addition & 0 deletions Pickle/Pickle/Resource/Lottie/PizzaPickle.json

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions Pickle/Pickle/Resource/Pickle.xctestplan
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"configurations" : [
{
"id" : "0C63EC1B-1A4A-42C2-A885-4882C3E1F0A8",
"name" : "Configuration 1",
"options" : {
"targetForVariableExpansion" : {
"containerPath" : "container:Pickle.xcodeproj",
"identifier" : "2137D5742AC1459C00AFE225",
"name" : "Pickle"
}
}
}
],
"defaultOptions" : {
"targetForVariableExpansion" : {
"containerPath" : "container:Pickle.xcodeproj",
"identifier" : "2137D5742AC1459C00AFE225",
"name" : "Pickle"
}
},
"testTargets" : [
{
"target" : {
"containerPath" : "container:Pickle.xcodeproj",
"identifier" : "965C9B9E2ADAB2380015ABBE",
"name" : "PickleTests"
}
},
{
"target" : {
"containerPath" : "container:..\/PickleCommon\/PickleCommon.xcodeproj",
"identifier" : "96B21F1B2BEF5474007AB2D1",
"name" : "PickleCommonTests"
}
}
],
"version" : 1
}
10 changes: 10 additions & 0 deletions Pickle/Pickle/Resource/TaskLiveActivityExtension.entitlements
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.application-groups</key>
<array>
<string>group.com.realPizza</string>
</array>
</dict>
</plist>
File renamed without changes.
17 changes: 17 additions & 0 deletions Pickle/Pickle/Resource/plist/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSSupportsLiveActivities</key>
<true/>
<key>UIAppFonts</key>
<array>
<string>NanumSquareNeoOTF-Bd.otf</string>
<string>NanumSquareNeoOTF-Eb.otf</string>
<string>NanumSquareNeoOTF-Hv.otf</string>
<string>NanumSquareNeoOTF-Lt.otf</string>
<string>NanumSquareNeoOTF-Rg.otf</string>
<string>Chab.otf</string>
</array>
</dict>
</plist>
37 changes: 37 additions & 0 deletions Pickle/Pickle/Resource/plist/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypes</key>
<array>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>Other user content</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeProductPersonalization</string>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeHealth</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
<string>NSPrivacyCollectedDataTypePurposeProductPersonalization</string>
</array>
</dict>
</array>
</dict>
</plist>
2 changes: 2 additions & 0 deletions Pickle/Pickle/Screen/Home/HomeView/View/HomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,10 @@ struct HomeView_Previews: PreviewProvider {
Text("value")
#endif
}.onAppear {
#if DEBUG
PreviewsContainer.setUpDependency()
PreviewsContainer.dependencySetting(pizza: pizza, user: user, todo: todo, mission: mission)
#endif
}
}
}

0 comments on commit 7f6f8a5

Please sign in to comment.