[Add] TensorFlowLiteSwift 0.0.1-nightly.20241221
[CocoaPods.git] / Specs / 5 / 2 / b / LZCamera / 0.9.0 / LZCamera.podspec.json
blob67b72e1e0878a58fed1ac09bd7a668ded2f8be79
2   "name": "LZCamera",
3   "version": "0.9.0",
4   "summary": "基于 AVFoundation 实现的摄像机功能",
5   "description": "基于 AVFoundation 实现的摄像机功能,共有三部分内容:\n1.核心功能实现部分。\n2.基于 Core 模块实现多媒体捕捉功能,包括:静态图片、短视频、长视频。\n3.基于 Core 模块实现机器码识别功能,机器码类型支持自定义。",
6   "homepage": "https://github.com/liLeiBest",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "lilei": "lilei0502@139.com"
13   },
14   "source": {
15     "git": "https://github.com/liLeiBest/LZCamera.git",
16     "tag": "0.9.0"
17   },
18   "platforms": {
19     "ios": "9.0"
20   },
21   "frameworks": [
22     "AVFoundation",
23     "Foundation",
24     "UIKit",
25     "Photos",
26     "CoreServices",
27     "CoreMedia"
28   ],
29   "source_files": "LZCamera/Classes/LZCamera.h",
30   "public_header_files": "LZCamera/Classes/LZCamera.h",
31   "prefix_header_contents": "#if DEBUG\n#define LZCameraLog(fmt, ...) NSLog((@\"%s [Line %d] \" fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__)\n#else\n#define LZCameraLog(fmt, ...)\n#endif\n#define LZCameraNSBundle(bundleName) bundleName.length ? [NSBundle bundleWithPath:[[NSBundle bundleForClass:NSClassFromString(@\"LZCameraController\")] pathForResource:bundleName ofType:@\"bundle\"]] :  [NSBundle bundleForClass:NSClassFromString(@\"LZCameraController\")]\n\n#import <AVFoundation/AVFoundation.h>\n#import <Photos/Photos.h>",
32   "subspecs": [
33     {
34       "name": "Core",
35       "source_files": [
36         "LZCamera/Classes/Core/**/*.{h,m}",
37         ""
38       ],
39       "public_header_files": "LZCamera/Classes/Core/**/*.h"
40     },
41     {
42       "name": "MediaCapture",
43       "source_files": [
44         "LZCamera/Classes/Media/**/*.{h,m}",
45         ""
46       ],
47       "public_header_files": "LZCamera/Classes/Media/**/*.h",
48       "resources": "LZCamera/Classes/Media/Resources/LZCameraMedia.bundle",
49       "dependencies": {
50         "LZCamera/Core": [
52         ],
53         "LZCamera/Editor": [
55         ]
56       }
57     },
58     {
59       "name": "CodeCapture",
60       "source_files": "LZCamera/Classes/Code/**/*.{h,m}",
61       "public_header_files": "LZCamera/Classes/Code/**/*.h",
62       "resources": "LZCamera/Classes/Code/Resources/LZCameraCode.bundle",
63       "dependencies": {
64         "LZCamera/Core": [
66         ]
67       }
68     },
69     {
70       "name": "Editor",
71       "source_files": [
72         "LZCamera/Classes/Editor/**/*.{h,m}",
73         "LZCamera/Classes/Editor/Controller/*.storyboard",
74         ""
75       ],
76       "public_header_files": "LZCamera/Classes/Editor/**/*.h",
77       "resources": "LZCamera/Classes/Editor/Resources/LZCameraEditor.bundle",
78       "dependencies": {
79         "LZCamera/Core": [
81         ],
82         "LZDependencyToolkit/Object": [
84         ]
85       }
86     }
87   ]