adding Liquid package

This commit is contained in:
talksik
2021-12-12 20:04:40 -08:00
parent 189f884e41
commit febb60e246
3 changed files with 43 additions and 4 deletions
+27
View File
@@ -25,6 +25,7 @@
891A16132765A44300B26659 /* ChatsCarouselViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 891A16122765A44300B26659 /* ChatsCarouselViewModel.swift */; };
892179E42765FEB8001E6C60 /* FooterControlsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 892179E32765FEB8001E6C60 /* FooterControlsView.swift */; };
892179E62765FECD001E6C60 /* FooterControlsViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 892179E52765FECD001E6C60 /* FooterControlsViewModel.swift */; };
89D99D2E2766FD6B00237814 /* Liquid in Frameworks */ = {isa = PBXBuildFile; productRef = 89D99D2D2766FD6B00237814 /* Liquid */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
@@ -55,6 +56,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
89D99D2E2766FD6B00237814 /* Liquid in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -199,6 +201,9 @@
dependencies = (
);
name = "nirvana-ios";
packageProductDependencies = (
89D99D2D2766FD6B00237814 /* Liquid */,
);
productName = "nirvana-ios";
productReference = 891A15DD27653A7000B26659 /* nirvana-ios.app */;
productType = "com.apple.product-type.application";
@@ -227,6 +232,9 @@
Base,
);
mainGroup = 891A15D427653A7000B26659;
packageReferences = (
89D99D2C2766FD6B00237814 /* XCRemoteSwiftPackageReference "liquid" */,
);
productRefGroup = 891A15DE27653A7000B26659 /* Products */;
projectDirPath = "";
projectRoot = "";
@@ -477,6 +485,25 @@
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
/* Begin XCRemoteSwiftPackageReference section */
89D99D2C2766FD6B00237814 /* XCRemoteSwiftPackageReference "liquid" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/maustinstar/liquid";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.0.2;
};
};
/* End XCRemoteSwiftPackageReference section */
/* Begin XCSwiftPackageProductDependency section */
89D99D2D2766FD6B00237814 /* Liquid */ = {
isa = XCSwiftPackageProductDependency;
package = 89D99D2C2766FD6B00237814 /* XCRemoteSwiftPackageReference "liquid" */;
productName = Liquid;
};
/* End XCSwiftPackageProductDependency section */
};
rootObject = 891A15D527653A7000B26659 /* Project object */;
}
@@ -0,0 +1,16 @@
{
"object": {
"pins": [
{
"package": "Liquid",
"repositoryURL": "https://github.com/maustinstar/liquid",
"state": {
"branch": null,
"revision": "9123b9d1fb24c8273c989924b4e889f07629a26b",
"version": "0.0.2"
}
}
]
},
"version": 1
}
@@ -42,10 +42,6 @@ struct FooterControlsView: View {
anchor: .center)
.simultaneousGesture(dragGesture)
})
Text("currently is \(self.isHolding ? "recording": "not recording")")
}
.padding()
}