├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ExampleTests │ └── ExampleTests.swift ├── ExampleUITests │ ├── ExampleUITests.swift │ └── ExampleUITestsLaunchTests.swift └── Sources │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── ExampleApp.swift │ └── FDSoundActivatedRecorderViewModel.swift ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── FDSoundActivatedRecorder │ └── FDSoundActivatedRecorder.swift └── Tests └── FDSoundActivatedRecorderTests └── FDSoundActivatedRecorderTests.swift /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ExampleTests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/ExampleTests/ExampleTests.swift -------------------------------------------------------------------------------- /Example/ExampleUITests/ExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/ExampleUITests/ExampleUITests.swift -------------------------------------------------------------------------------- /Example/ExampleUITests/ExampleUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/ExampleUITests/ExampleUITestsLaunchTests.swift -------------------------------------------------------------------------------- /Example/Sources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/Sources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/Sources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/Sources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Sources/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/Sources/ContentView.swift -------------------------------------------------------------------------------- /Example/Sources/ExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/Sources/ExampleApp.swift -------------------------------------------------------------------------------- /Example/Sources/FDSoundActivatedRecorderViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Example/Sources/FDSoundActivatedRecorderViewModel.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FDSoundActivatedRecorder/FDSoundActivatedRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Sources/FDSoundActivatedRecorder/FDSoundActivatedRecorder.swift -------------------------------------------------------------------------------- /Tests/FDSoundActivatedRecorderTests/FDSoundActivatedRecorderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fulldecent/FDSoundActivatedRecorder/HEAD/Tests/FDSoundActivatedRecorderTests/FDSoundActivatedRecorderTests.swift --------------------------------------------------------------------------------