No Applications Can Perform This Action

Hello,

I have just recompiled my app since the default android permissions where removed and now when I try to send an email from my app on my android device i get a error message stating “Send mail… No applications can perform this action.”

If I reinstall older version of app (before the default android permissions where removed) it works fine.

 

Could any one please tell me what default android permissions I would need to send email from app or if anyone else has had this issue?

 

Thanks,

Chris

Same problem here, sending a simple e-mail results in ‘no applications can perform this action’.

Did you find a solution ?

Thanks

Unfortunately no one has commented or recommended a fix :frowning:

It only started since the default permissions where removed so I gather there must be a android permission we need to set but I have tried many with no luck.

According to the Android Permission documentation “android.permission.INTERNET” should do the job :frowning:

I just downloaded the latest daily build, CoronaSDK 2013.1095  and it works now, can add attachments and send.

I was using 2013.1076 from 04-03-2013…  I could send plain text but when trying to add an attachment, like you said it behaved like a permission problem.

Thanks dturner0 - your post was timely :slight_smile:

I have re-built with 1095 and it does indeed work now.

Now to re-upload Wordistic to the Google Play Store :slight_smile:

This needs to be in your build.settings file as part of the settings = {} table:

[lua]

       android =
       {
           usesPermissions =
           {
               “android.permission.INTERNET”,
           },
       }

[/lua]

Same problem here, sending a simple e-mail results in ‘no applications can perform this action’.

Did you find a solution ?

Thanks

Unfortunately no one has commented or recommended a fix :frowning:

It only started since the default permissions where removed so I gather there must be a android permission we need to set but I have tried many with no luck.

According to the Android Permission documentation “android.permission.INTERNET” should do the job :frowning:

I just downloaded the latest daily build, CoronaSDK 2013.1095  and it works now, can add attachments and send.

I was using 2013.1076 from 04-03-2013…  I could send plain text but when trying to add an attachment, like you said it behaved like a permission problem.

Thanks dturner0 - your post was timely :slight_smile:

I have re-built with 1095 and it does indeed work now.

Now to re-upload Wordistic to the Google Play Store :slight_smile:

This needs to be in your build.settings file as part of the settings = {} table:

[lua]

       android =
       {
           usesPermissions =
           {
               “android.permission.INTERNET”,
           },
       }

[/lua]