[Add] TensorFlowLiteObjC 0.0.1-nightly.20241221
[CocoaPods.git] / Specs / 5 / 2 / b / LZCamera / 0.4.0 / LZCamera.podspec.json
blob7cee9c643f214c45bd453a9110c46b26d48532b2
2   "name": "LZCamera",
3   "version": "0.4.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.4.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": "LZCamera/Classes/Core/**/*.{h,m}",
36       "public_header_files": "LZCamera/Classes/Core/**/*.h",
37       "resources": "LZCamera/Classes/core/Resources/LZCameraCore.bundle"
38     },
39     {
40       "name": "MediaCapture",
41       "source_files": "LZCamera/Classes/Media/**/*.{h,m}",
42       "public_header_files": "LZCamera/Classes/Media/**/*.h",
43       "resources": "LZCamera/Classes/Media/Resources/LZCameraMedia.bundle",
44       "dependencies": {
45         "LZCamera/Core": [
47         ],
48         "LZCamera/Editor": [
50         ]
51       }
52     },
53     {
54       "name": "CodeCapture",
55       "source_files": "LZCamera/Classes/Code/**/*.{h,m}",
56       "public_header_files": "LZCamera/Classes/Code/**/*.h",
57       "resources": "LZCamera/Classes/Code/Resources/LZCameraCode.bundle",
58       "dependencies": {
59         "LZCamera/Core": [
61         ]
62       }
63     },
64     {
65       "name": "Editor",
66       "source_files": "LZCamera/Classes/Editor/**/*.{h,m}",
67       "public_header_files": "LZCamera/Classes/Editor/**/*.h",
68       "resources": "LZCamera/Classes/Editor/Resources/LZCameraEditor.bundle",
69       "dependencies": {
70         "LZCamera/Core": [
72         ]
73       }
74     }
75   ]