nosnia-audio-recorder 0.3.8 → 0.3.9
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/ios/NosniaAudioPlayer.mm
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
#ifndef __NOSNIA_AUDIO_PLAYER_MM__
|
|
2
|
+
#define __NOSNIA_AUDIO_PLAYER_MM__
|
|
3
|
+
|
|
1
4
|
#import "NosniaAudioPlayer.h"
|
|
2
5
|
#import <AVFoundation/AVFoundation.h>
|
|
3
6
|
#import <React/RCTBridgeModule.h>
|
|
@@ -257,3 +260,5 @@ RCT_EXPORT_MODULE(NosniaAudioPlayer)
|
|
|
257
260
|
}
|
|
258
261
|
|
|
259
262
|
@end
|
|
263
|
+
|
|
264
|
+
#endif /* __NOSNIA_AUDIO_PLAYER_MM__ */
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
#ifndef __NOSNIA_AUDIO_RECORDER_MM__
|
|
2
|
+
#define __NOSNIA_AUDIO_RECORDER_MM__
|
|
3
|
+
|
|
1
4
|
#import "NosniaAudioRecorder.h"
|
|
2
5
|
#import <AVFoundation/AVFoundation.h>
|
|
3
6
|
#import <React/RCTBridgeModule.h>
|
|
@@ -496,3 +499,5 @@ RCT_EXPORT_MODULE(NosniaAudioRecorder)
|
|
|
496
499
|
}
|
|
497
500
|
|
|
498
501
|
@end
|
|
502
|
+
|
|
503
|
+
#endif /* __NOSNIA_AUDIO_RECORDER_MM__ */
|
package/package.json
CHANGED