Home > Enterprise >  Android apk not workin
Android apk not workin

Time:12-21

While running application from android studio application works fine but after build release apk it is not working but debug apk works fine.

i want to run release apk in the device.

CodePudding user response:

Add this line in menifeast i think it will work.

<manifest ...>
    <uses-permission android:name="android.permission.INTERNET" />
    <application
        ...
        android:usesCleartextTraffic="true"
        ...>
       
    </application>
</manifest>
  • Related