Skip to main content
Inspiring
December 1, 2017
Answered

AIR25 to AIR28: iOS app crashes when accessing to a Microphone object

  • December 1, 2017
  • 1 reply
  • 598 views

Hello,

I'm facing a crash with app compiled with AIR 25 or AIR25 under iOS:

When trying to access a Microphone object, the app crashes and closes.

Hereunder the code:

import flash.media.Microphone;

public var mic:Microphone = Microphone.getMicrophone();

function enregistrer(e:Event):void {

    mic.gain = 60;

    mic.rate = 44;

    mic.setSilenceLevel(0,4000);

    sndByte.clear();

    mic.addEventListener(SampleDataEvent.SAMPLE_DATA,onRecord);

}

private function onRecord(e:SampleDataEvent):void {

    while(e.data.bytesAvailable) {

           var sample:Number = e.data.readFloat();

           sndByte.writeFloat(sample);

    }

}

The crash occurs when pressing the button to which function enregistrer is associated.

Does anybody know how to solve this issue?

Thks in advance

This topic has been closed for replies.
Correct answer krgupta

Hi,

You would need to use the Permissions api for accessing Microphone. For more details please check release notes at https://helpx.adobe.com/in/flash-player/release-note/fp_24_air_24_release_notes.html

Release Notes Flash Player 24 AIR 24

Also, you will have to add cocoa key NSMicrophoneUsageDescription in your application descriptor file.

Thanks,

Krati | Adobe AIR Engineering

1 reply

krguptaCommunity ManagerCorrect answer
Community Manager
December 1, 2017

Hi,

You would need to use the Permissions api for accessing Microphone. For more details please check release notes at https://helpx.adobe.com/in/flash-player/release-note/fp_24_air_24_release_notes.html

Release Notes Flash Player 24 AIR 24

Also, you will have to add cocoa key NSMicrophoneUsageDescription in your application descriptor file.

Thanks,

Krati | Adobe AIR Engineering