Working Great on debug Mode but when I generate an apk in release mode It does not work
I generated the apk in release mode, I install it on my phone and I never get the connection done to the DB, I do exactly the same using debug mode, It works awesome !!
Thank You in Advance.
?????
It's working Now, I didn't because I missed to add
It's working Now, I didn't because I missed to add at the manifest file that isn't required in debug mode !
How to fix it? Which file to add?
android/app/src/main/AndroidManifest.xml
add:
<manifest>
...
<uses-permission android:name="android.permission.INTERNET"/>
...
</manifest>
and rebuild app again...
android/app/src/main/AndroidManifest.xml
add:
<manifest> ... <uses-permission android:name="android.permission.INTERNET"/> ... </manifest>and rebuild app again...
It worked for me, I can't believe I skipped this :) thank you.