nosnia-audio-recorder 0.4.2 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NosniaAudioRecorder.podspec +6 -4
- package/android/src/main/java/com/nosniaaudiorecorder/NosniaAudioPlayerModule.kt +238 -238
- package/ios/NosniaAudioPlayer.h +7 -7
- package/ios/NosniaAudioPlayer.mm +259 -259
- package/lib/module/AudioPlayer.js.map +1 -1
- package/lib/module/NativeNosniaAudioPlayer.js.map +1 -1
- package/lib/module/NativeNosniaAudioRecorder.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/package.json +182 -182
- package/ios/Podfile +0 -29
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +0 -207
- package/ios/Pods/Pods.xcodeproj/xcuserdata/nosnia.xcuserdatad/xcschemes/xcschememanagement.plist +0 -10
package/package.json
CHANGED
|
@@ -1,182 +1,182 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "nosnia-audio-recorder",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "This is a modern audio recorder which actually works cross platform",
|
|
5
|
-
"main": "./lib/module/index.js",
|
|
6
|
-
"types": "./lib/typescript/src/index.d.ts",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": {
|
|
9
|
-
"source": "./src/index.tsx",
|
|
10
|
-
"types": "./lib/typescript/src/index.d.ts",
|
|
11
|
-
"default": "./lib/module/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./package.json": "./package.json"
|
|
14
|
-
},
|
|
15
|
-
"files": [
|
|
16
|
-
"src",
|
|
17
|
-
"lib",
|
|
18
|
-
"android",
|
|
19
|
-
"ios",
|
|
20
|
-
"cpp",
|
|
21
|
-
"*.podspec",
|
|
22
|
-
"react-native.config.js",
|
|
23
|
-
"!ios/build",
|
|
24
|
-
"!android/build",
|
|
25
|
-
"!android/gradle",
|
|
26
|
-
"!android/gradlew",
|
|
27
|
-
"!android/gradlew.bat",
|
|
28
|
-
"!android/local.properties",
|
|
29
|
-
"!**/__tests__",
|
|
30
|
-
"!**/__fixtures__",
|
|
31
|
-
"!**/__mocks__",
|
|
32
|
-
"!**/.*"
|
|
33
|
-
],
|
|
34
|
-
"scripts": {
|
|
35
|
-
"example": "yarn workspace nosnia-audio-recorder-example",
|
|
36
|
-
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
|
|
37
|
-
"prepare": "bob build",
|
|
38
|
-
"typecheck": "tsc",
|
|
39
|
-
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
40
|
-
"release": "release-it --only-version",
|
|
41
|
-
"test": "jest"
|
|
42
|
-
},
|
|
43
|
-
"keywords": [
|
|
44
|
-
"react-native",
|
|
45
|
-
"ios",
|
|
46
|
-
"android"
|
|
47
|
-
],
|
|
48
|
-
"repository": {
|
|
49
|
-
"type": "git",
|
|
50
|
-
"url": "git+https://nosnia.ai.git"
|
|
51
|
-
},
|
|
52
|
-
"author": "Parth Thakkar <parth@nosnia.ai> (https://nosnia.ai)",
|
|
53
|
-
"license": "MIT",
|
|
54
|
-
"bugs": {
|
|
55
|
-
"url": "https://nosnia.ai/issues"
|
|
56
|
-
},
|
|
57
|
-
"homepage": "https://nosnia.ai#readme",
|
|
58
|
-
"publishConfig": {
|
|
59
|
-
"registry": "https://registry.npmjs.org/"
|
|
60
|
-
},
|
|
61
|
-
"devDependencies": {
|
|
62
|
-
"@commitlint/config-conventional": "^19.8.1",
|
|
63
|
-
"@eslint/compat": "^1.3.2",
|
|
64
|
-
"@eslint/eslintrc": "^3.3.1",
|
|
65
|
-
"@eslint/js": "^9.35.0",
|
|
66
|
-
"@react-native-community/cli": "20.0.1",
|
|
67
|
-
"@react-native/babel-preset": "0.81.1",
|
|
68
|
-
"@react-native/eslint-config": "^0.81.1",
|
|
69
|
-
"@release-it/conventional-changelog": "^10.0.1",
|
|
70
|
-
"@types/jest": "^29.5.14",
|
|
71
|
-
"@types/react": "^19.1.0",
|
|
72
|
-
"commitlint": "^19.8.1",
|
|
73
|
-
"del-cli": "^6.0.0",
|
|
74
|
-
"eslint": "^9.35.0",
|
|
75
|
-
"eslint-config-prettier": "^10.1.8",
|
|
76
|
-
"eslint-plugin-prettier": "^5.5.4",
|
|
77
|
-
"jest": "^29.7.0",
|
|
78
|
-
"lefthook": "^2.0.3",
|
|
79
|
-
"prettier": "^2.8.8",
|
|
80
|
-
"react": "19.1.0",
|
|
81
|
-
"react-native": "0.81.1",
|
|
82
|
-
"react-native-builder-bob": "^0.40.13",
|
|
83
|
-
"release-it": "^19.0.4",
|
|
84
|
-
"turbo": "^2.5.6",
|
|
85
|
-
"typescript": "^5.9.2"
|
|
86
|
-
},
|
|
87
|
-
"peerDependencies": {
|
|
88
|
-
"react": "*",
|
|
89
|
-
"react-native": "*"
|
|
90
|
-
},
|
|
91
|
-
"workspaces": [
|
|
92
|
-
"example"
|
|
93
|
-
],
|
|
94
|
-
"packageManager": "yarn@4.11.0",
|
|
95
|
-
"react-native-builder-bob": {
|
|
96
|
-
"source": "src",
|
|
97
|
-
"output": "lib",
|
|
98
|
-
"targets": [
|
|
99
|
-
[
|
|
100
|
-
"module",
|
|
101
|
-
{
|
|
102
|
-
"esm": true
|
|
103
|
-
}
|
|
104
|
-
],
|
|
105
|
-
[
|
|
106
|
-
"typescript",
|
|
107
|
-
{
|
|
108
|
-
"project": "tsconfig.build.json"
|
|
109
|
-
}
|
|
110
|
-
]
|
|
111
|
-
]
|
|
112
|
-
},
|
|
113
|
-
"codegenConfig": {
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
},
|
|
133
|
-
"prettier": {
|
|
134
|
-
"quoteProps": "consistent",
|
|
135
|
-
"singleQuote": true,
|
|
136
|
-
"tabWidth": 2,
|
|
137
|
-
"trailingComma": "es5",
|
|
138
|
-
"useTabs": false
|
|
139
|
-
},
|
|
140
|
-
"commitlint": {
|
|
141
|
-
"extends": [
|
|
142
|
-
"@commitlint/config-conventional"
|
|
143
|
-
]
|
|
144
|
-
},
|
|
145
|
-
"release-it": {
|
|
146
|
-
"git": {
|
|
147
|
-
"commitMessage": "chore: release ${version}",
|
|
148
|
-
"tagName": "v${version}"
|
|
149
|
-
},
|
|
150
|
-
"npm": {
|
|
151
|
-
"publish": true
|
|
152
|
-
},
|
|
153
|
-
"github": {
|
|
154
|
-
"release": true
|
|
155
|
-
},
|
|
156
|
-
"plugins": {
|
|
157
|
-
"@release-it/conventional-changelog": {
|
|
158
|
-
"preset": {
|
|
159
|
-
"name": "angular"
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
"jest": {
|
|
165
|
-
"preset": "react-native",
|
|
166
|
-
"modulePathIgnorePatterns": [
|
|
167
|
-
"<rootDir>/example/node_modules",
|
|
168
|
-
"<rootDir>/lib/"
|
|
169
|
-
]
|
|
170
|
-
},
|
|
171
|
-
"create-react-native-library": {
|
|
172
|
-
"languages": "kotlin-objc",
|
|
173
|
-
"type": "turbo-module",
|
|
174
|
-
"tools": [
|
|
175
|
-
"eslint",
|
|
176
|
-
"lefthook",
|
|
177
|
-
"release-it",
|
|
178
|
-
"jest"
|
|
179
|
-
],
|
|
180
|
-
"version": "0.55.0"
|
|
181
|
-
}
|
|
182
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "nosnia-audio-recorder",
|
|
3
|
+
"version": "0.4.4",
|
|
4
|
+
"description": "This is a modern audio recorder which actually works cross platform",
|
|
5
|
+
"main": "./lib/module/index.js",
|
|
6
|
+
"types": "./lib/typescript/src/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"source": "./src/index.tsx",
|
|
10
|
+
"types": "./lib/typescript/src/index.d.ts",
|
|
11
|
+
"default": "./lib/module/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./package.json": "./package.json"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"src",
|
|
17
|
+
"lib",
|
|
18
|
+
"android",
|
|
19
|
+
"ios",
|
|
20
|
+
"cpp",
|
|
21
|
+
"*.podspec",
|
|
22
|
+
"react-native.config.js",
|
|
23
|
+
"!ios/build",
|
|
24
|
+
"!android/build",
|
|
25
|
+
"!android/gradle",
|
|
26
|
+
"!android/gradlew",
|
|
27
|
+
"!android/gradlew.bat",
|
|
28
|
+
"!android/local.properties",
|
|
29
|
+
"!**/__tests__",
|
|
30
|
+
"!**/__fixtures__",
|
|
31
|
+
"!**/__mocks__",
|
|
32
|
+
"!**/.*"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"example": "yarn workspace nosnia-audio-recorder-example",
|
|
36
|
+
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
|
|
37
|
+
"prepare": "bob build",
|
|
38
|
+
"typecheck": "tsc",
|
|
39
|
+
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
40
|
+
"release": "release-it --only-version",
|
|
41
|
+
"test": "jest"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"react-native",
|
|
45
|
+
"ios",
|
|
46
|
+
"android"
|
|
47
|
+
],
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git+https://nosnia.ai.git"
|
|
51
|
+
},
|
|
52
|
+
"author": "Parth Thakkar <parth@nosnia.ai> (https://nosnia.ai)",
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://nosnia.ai/issues"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://nosnia.ai#readme",
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"registry": "https://registry.npmjs.org/"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
63
|
+
"@eslint/compat": "^1.3.2",
|
|
64
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
65
|
+
"@eslint/js": "^9.35.0",
|
|
66
|
+
"@react-native-community/cli": "20.0.1",
|
|
67
|
+
"@react-native/babel-preset": "0.81.1",
|
|
68
|
+
"@react-native/eslint-config": "^0.81.1",
|
|
69
|
+
"@release-it/conventional-changelog": "^10.0.1",
|
|
70
|
+
"@types/jest": "^29.5.14",
|
|
71
|
+
"@types/react": "^19.1.0",
|
|
72
|
+
"commitlint": "^19.8.1",
|
|
73
|
+
"del-cli": "^6.0.0",
|
|
74
|
+
"eslint": "^9.35.0",
|
|
75
|
+
"eslint-config-prettier": "^10.1.8",
|
|
76
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
77
|
+
"jest": "^29.7.0",
|
|
78
|
+
"lefthook": "^2.0.3",
|
|
79
|
+
"prettier": "^2.8.8",
|
|
80
|
+
"react": "19.1.0",
|
|
81
|
+
"react-native": "0.81.1",
|
|
82
|
+
"react-native-builder-bob": "^0.40.13",
|
|
83
|
+
"release-it": "^19.0.4",
|
|
84
|
+
"turbo": "^2.5.6",
|
|
85
|
+
"typescript": "^5.9.2"
|
|
86
|
+
},
|
|
87
|
+
"peerDependencies": {
|
|
88
|
+
"react": "*",
|
|
89
|
+
"react-native": "*"
|
|
90
|
+
},
|
|
91
|
+
"workspaces": [
|
|
92
|
+
"example"
|
|
93
|
+
],
|
|
94
|
+
"packageManager": "yarn@4.11.0",
|
|
95
|
+
"react-native-builder-bob": {
|
|
96
|
+
"source": "src",
|
|
97
|
+
"output": "lib",
|
|
98
|
+
"targets": [
|
|
99
|
+
[
|
|
100
|
+
"module",
|
|
101
|
+
{
|
|
102
|
+
"esm": true
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
[
|
|
106
|
+
"typescript",
|
|
107
|
+
{
|
|
108
|
+
"project": "tsconfig.build.json"
|
|
109
|
+
}
|
|
110
|
+
]
|
|
111
|
+
]
|
|
112
|
+
},
|
|
113
|
+
"codegenConfig": {
|
|
114
|
+
"libraries": [
|
|
115
|
+
{
|
|
116
|
+
"name": "NosniaAudioRecorderSpec",
|
|
117
|
+
"type": "modules",
|
|
118
|
+
"jsSrcsDir": "src",
|
|
119
|
+
"android": {
|
|
120
|
+
"javaPackageName": "com.nosniaaudiorecorder"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "NosniaAudioPlayerSpec",
|
|
125
|
+
"type": "modules",
|
|
126
|
+
"jsSrcsDir": "src",
|
|
127
|
+
"android": {
|
|
128
|
+
"javaPackageName": "com.nosniaaudiorecorder"
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
"prettier": {
|
|
134
|
+
"quoteProps": "consistent",
|
|
135
|
+
"singleQuote": true,
|
|
136
|
+
"tabWidth": 2,
|
|
137
|
+
"trailingComma": "es5",
|
|
138
|
+
"useTabs": false
|
|
139
|
+
},
|
|
140
|
+
"commitlint": {
|
|
141
|
+
"extends": [
|
|
142
|
+
"@commitlint/config-conventional"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
"release-it": {
|
|
146
|
+
"git": {
|
|
147
|
+
"commitMessage": "chore: release ${version}",
|
|
148
|
+
"tagName": "v${version}"
|
|
149
|
+
},
|
|
150
|
+
"npm": {
|
|
151
|
+
"publish": true
|
|
152
|
+
},
|
|
153
|
+
"github": {
|
|
154
|
+
"release": true
|
|
155
|
+
},
|
|
156
|
+
"plugins": {
|
|
157
|
+
"@release-it/conventional-changelog": {
|
|
158
|
+
"preset": {
|
|
159
|
+
"name": "angular"
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"jest": {
|
|
165
|
+
"preset": "react-native",
|
|
166
|
+
"modulePathIgnorePatterns": [
|
|
167
|
+
"<rootDir>/example/node_modules",
|
|
168
|
+
"<rootDir>/lib/"
|
|
169
|
+
]
|
|
170
|
+
},
|
|
171
|
+
"create-react-native-library": {
|
|
172
|
+
"languages": "kotlin-objc",
|
|
173
|
+
"type": "turbo-module",
|
|
174
|
+
"tools": [
|
|
175
|
+
"eslint",
|
|
176
|
+
"lefthook",
|
|
177
|
+
"release-it",
|
|
178
|
+
"jest"
|
|
179
|
+
],
|
|
180
|
+
"version": "0.55.0"
|
|
181
|
+
}
|
|
182
|
+
}
|
package/ios/Podfile
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
post_install do |installer|
|
|
2
|
-
# Keep existing RN post install if present
|
|
3
|
-
begin
|
|
4
|
-
react_native_post_install(installer)
|
|
5
|
-
rescue NameError
|
|
6
|
-
# react_native_post_install not defined in some templates — ignore
|
|
7
|
-
end
|
|
8
|
-
|
|
9
|
-
# Allow non-modular includes in framework modules to avoid
|
|
10
|
-
# "non-modular-include-in-framework-module" compile errors coming from RN pods.
|
|
11
|
-
installer.pods_project.targets.each do |target|
|
|
12
|
-
target.build_configurations.each do |config|
|
|
13
|
-
config.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
|
|
14
|
-
# keep inherited header search paths
|
|
15
|
-
config.build_settings['HEADER_SEARCH_PATHS'] ||= ['$(inherited)']
|
|
16
|
-
end
|
|
17
|
-
end
|
|
18
|
-
|
|
19
|
-
# Also apply to pod native targets (defensive)
|
|
20
|
-
installer.pod_targets.each do |pod|
|
|
21
|
-
begin
|
|
22
|
-
pod.native_target.build_configurations.each do |config|
|
|
23
|
-
config.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
|
|
24
|
-
end
|
|
25
|
-
rescue => e
|
|
26
|
-
# ignore pods without native_target
|
|
27
|
-
end
|
|
28
|
-
end
|
|
29
|
-
end
|
|
@@ -1,207 +0,0 @@
|
|
|
1
|
-
// !$*UTF8*$!
|
|
2
|
-
{
|
|
3
|
-
archiveVersion = 1;
|
|
4
|
-
classes = {
|
|
5
|
-
};
|
|
6
|
-
objectVersion = 46;
|
|
7
|
-
objects = {
|
|
8
|
-
|
|
9
|
-
/* Begin PBXFileReference section */
|
|
10
|
-
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
|
11
|
-
/* End PBXFileReference section */
|
|
12
|
-
|
|
13
|
-
/* Begin PBXGroup section */
|
|
14
|
-
93BAFDF14BA360977052E7B9CCC18E94 /* Products */ = {
|
|
15
|
-
isa = PBXGroup;
|
|
16
|
-
children = (
|
|
17
|
-
);
|
|
18
|
-
name = Products;
|
|
19
|
-
sourceTree = "<group>";
|
|
20
|
-
};
|
|
21
|
-
CF1408CF629C7361332E53B88F7BD30C = {
|
|
22
|
-
isa = PBXGroup;
|
|
23
|
-
children = (
|
|
24
|
-
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
|
|
25
|
-
D89477F20FB1DE18A04690586D7808C4 /* Frameworks */,
|
|
26
|
-
93BAFDF14BA360977052E7B9CCC18E94 /* Products */,
|
|
27
|
-
);
|
|
28
|
-
sourceTree = "<group>";
|
|
29
|
-
};
|
|
30
|
-
D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = {
|
|
31
|
-
isa = PBXGroup;
|
|
32
|
-
children = (
|
|
33
|
-
);
|
|
34
|
-
name = Frameworks;
|
|
35
|
-
sourceTree = "<group>";
|
|
36
|
-
};
|
|
37
|
-
/* End PBXGroup section */
|
|
38
|
-
|
|
39
|
-
/* Begin PBXProject section */
|
|
40
|
-
BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
|
|
41
|
-
isa = PBXProject;
|
|
42
|
-
attributes = {
|
|
43
|
-
LastSwiftUpdateCheck = 1600;
|
|
44
|
-
LastUpgradeCheck = 1600;
|
|
45
|
-
};
|
|
46
|
-
buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
|
|
47
|
-
compatibilityVersion = "Xcode 3.2";
|
|
48
|
-
developmentRegion = en;
|
|
49
|
-
hasScannedForEncodings = 0;
|
|
50
|
-
knownRegions = (
|
|
51
|
-
Base,
|
|
52
|
-
en,
|
|
53
|
-
);
|
|
54
|
-
mainGroup = CF1408CF629C7361332E53B88F7BD30C;
|
|
55
|
-
minimizedProjectReferenceProxies = 0;
|
|
56
|
-
preferredProjectObjectVersion = 77;
|
|
57
|
-
productRefGroup = 93BAFDF14BA360977052E7B9CCC18E94 /* Products */;
|
|
58
|
-
projectDirPath = "";
|
|
59
|
-
projectRoot = "";
|
|
60
|
-
targets = (
|
|
61
|
-
);
|
|
62
|
-
};
|
|
63
|
-
/* End PBXProject section */
|
|
64
|
-
|
|
65
|
-
/* Begin XCBuildConfiguration section */
|
|
66
|
-
2426522C419C0DE4525883EA7AABC025 /* Release */ = {
|
|
67
|
-
isa = XCBuildConfiguration;
|
|
68
|
-
buildSettings = {
|
|
69
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
70
|
-
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
71
|
-
CLANG_ANALYZER_NONNULL = YES;
|
|
72
|
-
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
73
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
74
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
75
|
-
CLANG_ENABLE_MODULES = YES;
|
|
76
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
77
|
-
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
78
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
79
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
80
|
-
CLANG_WARN_COMMA = YES;
|
|
81
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
82
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
83
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
84
|
-
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
85
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
86
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
87
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
88
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
89
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
90
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
91
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
92
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
93
|
-
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
94
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
95
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
96
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
97
|
-
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
98
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
99
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
100
|
-
COPY_PHASE_STRIP = NO;
|
|
101
|
-
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
102
|
-
ENABLE_NS_ASSERTIONS = NO;
|
|
103
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
104
|
-
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
105
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
106
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
107
|
-
"POD_CONFIGURATION_RELEASE=1",
|
|
108
|
-
"$(inherited)",
|
|
109
|
-
);
|
|
110
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
111
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
112
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
113
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
114
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
115
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
116
|
-
MTL_ENABLE_DEBUG_INFO = NO;
|
|
117
|
-
MTL_FAST_MATH = YES;
|
|
118
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
119
|
-
STRIP_INSTALLED_PRODUCT = NO;
|
|
120
|
-
SWIFT_COMPILATION_MODE = wholemodule;
|
|
121
|
-
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
122
|
-
SWIFT_VERSION = 5.0;
|
|
123
|
-
SYMROOT = "${SRCROOT}/../build";
|
|
124
|
-
};
|
|
125
|
-
name = Release;
|
|
126
|
-
};
|
|
127
|
-
8F9FEBB7130A3DF8746ED9AA46FE33FA /* Debug */ = {
|
|
128
|
-
isa = XCBuildConfiguration;
|
|
129
|
-
buildSettings = {
|
|
130
|
-
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
131
|
-
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
132
|
-
CLANG_ANALYZER_NONNULL = YES;
|
|
133
|
-
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
134
|
-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
135
|
-
CLANG_CXX_LIBRARY = "libc++";
|
|
136
|
-
CLANG_ENABLE_MODULES = YES;
|
|
137
|
-
CLANG_ENABLE_OBJC_ARC = YES;
|
|
138
|
-
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
139
|
-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
140
|
-
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
141
|
-
CLANG_WARN_COMMA = YES;
|
|
142
|
-
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
143
|
-
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
144
|
-
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
145
|
-
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
146
|
-
CLANG_WARN_EMPTY_BODY = YES;
|
|
147
|
-
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
148
|
-
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
149
|
-
CLANG_WARN_INT_CONVERSION = YES;
|
|
150
|
-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
151
|
-
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
152
|
-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
153
|
-
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
154
|
-
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
155
|
-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
156
|
-
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
157
|
-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
158
|
-
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
159
|
-
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
160
|
-
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
161
|
-
COPY_PHASE_STRIP = NO;
|
|
162
|
-
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
163
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
164
|
-
ENABLE_TESTABILITY = YES;
|
|
165
|
-
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
166
|
-
GCC_DYNAMIC_NO_PIC = NO;
|
|
167
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
|
168
|
-
GCC_OPTIMIZATION_LEVEL = 0;
|
|
169
|
-
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
170
|
-
"POD_CONFIGURATION_DEBUG=1",
|
|
171
|
-
"DEBUG=1",
|
|
172
|
-
"$(inherited)",
|
|
173
|
-
);
|
|
174
|
-
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
175
|
-
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
176
|
-
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
177
|
-
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
178
|
-
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
179
|
-
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
180
|
-
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
181
|
-
MTL_FAST_MATH = YES;
|
|
182
|
-
ONLY_ACTIVE_ARCH = YES;
|
|
183
|
-
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
184
|
-
STRIP_INSTALLED_PRODUCT = NO;
|
|
185
|
-
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
186
|
-
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
187
|
-
SWIFT_VERSION = 5.0;
|
|
188
|
-
SYMROOT = "${SRCROOT}/../build";
|
|
189
|
-
};
|
|
190
|
-
name = Debug;
|
|
191
|
-
};
|
|
192
|
-
/* End XCBuildConfiguration section */
|
|
193
|
-
|
|
194
|
-
/* Begin XCConfigurationList section */
|
|
195
|
-
4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
|
|
196
|
-
isa = XCConfigurationList;
|
|
197
|
-
buildConfigurations = (
|
|
198
|
-
8F9FEBB7130A3DF8746ED9AA46FE33FA /* Debug */,
|
|
199
|
-
2426522C419C0DE4525883EA7AABC025 /* Release */,
|
|
200
|
-
);
|
|
201
|
-
defaultConfigurationIsVisible = 0;
|
|
202
|
-
defaultConfigurationName = Release;
|
|
203
|
-
};
|
|
204
|
-
/* End XCConfigurationList section */
|
|
205
|
-
};
|
|
206
|
-
rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
207
|
-
}
|
package/ios/Pods/Pods.xcodeproj/xcuserdata/nosnia.xcuserdatad/xcschemes/xcschememanagement.plist
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>SchemeUserState</key>
|
|
6
|
-
<dict/>
|
|
7
|
-
<key>SuppressBuildableAutocreation</key>
|
|
8
|
-
<dict/>
|
|
9
|
-
</dict>
|
|
10
|
-
</plist>
|