質問編集履歴
1
ビルドログを調べて、warningに気づいたので、その情報を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,4 +42,34 @@
|
|
42
42
|
|
43
43
|
|
44
44
|
|
45
|
+
(2017.06.16 追記)
|
46
|
+
|
47
|
+
その後、再度ビルドをし、ビルドログをチェックしておりました。
|
48
|
+
|
49
|
+
warningが2つ出ていましたので、関係あるかわかりませんが、記載いたします。
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
```text
|
54
|
+
|
55
|
+
/tmp/monaca/59434136013eb07f102ccb25/project/platforms/ios/myapp/Plugins/cordova-plugin-media/CDVSound.m:661:27: warning: unused variable 'audioSettings' [-Wunused-variable]
|
56
|
+
|
57
|
+
NSDictionary *audioSettings = @{AVFormatIDKey: @(kAudioFormatMPEG4AAC),
|
58
|
+
|
59
|
+
^
|
60
|
+
|
61
|
+
/tmp/monaca/59434136013eb07f102ccb25/project/platforms/ios/myapp/Plugins/cordova-plugin-media/CDVSound.m:666:60: warning: null passed to a callee that requires a non-null argument [-Wnonnull]
|
62
|
+
|
63
|
+
audioFile.recorder = [[CDVAudioRecorder alloc] initWithURL:audioFile.resourceURL settings:nil error:&error];
|
64
|
+
|
65
|
+
^ ~~~
|
66
|
+
|
67
|
+
2 warnings generated.
|
68
|
+
|
69
|
+
```
|
70
|
+
|
71
|
+
warningを手掛かりに自分なりに調べてみようと思っています。
|
72
|
+
|
73
|
+
|
74
|
+
|
45
|
-
お心あたりがありましたら、些細なことでも構いませんのでご教授いただければ幸いです。
|
75
|
+
何か、お心あたりがありましたら、些細なことでも構いませんのでご教授いただければ幸いです。
|