Javamail Send email work with wifi connection but not with data mobile

谁说胖子不能爱 提交于 2019-12-12 03:43:20

问题


I'm new in android. I'm learning about javamail to create app that can send email notification. I follow this tutorial https://www.simplifiedcoding.net/android-email-app-using-javamail-api-in-android-studio/

It's working well in emulator android. I can receive email. Then I tried to install my app in my android device with Wifi connection, it's working well. But when I use Data Mobile Connection (not Wifi) email not sent. Can you tell me why?

Thanks for advance.


回答1:


solution from @Agung from the comments

add this code

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

in AndroidManifest.xml file...



来源:https://stackoverflow.com/questions/40657836/javamail-send-email-work-with-wifi-connection-but-not-with-data-mobile

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!