Home > OS >  Android App does not work on other device
Android App does not work on other device

Time:01-24

When I install my app with android studio it perfectly runs fine on my device, But when I share the same app with my friend or anyone It didn't even Install on their phone.

It show this type of error

enter image description here

CodePudding user response:

It seems like you are sharing non signed apk release file of you android application. Please follow instructions mentioned at https://developer.android.com/studio/publish/app-signing for creating singed apk version of your application.

CodePudding user response:

There can be many reasons

  • check your lowest Android version in Gradle file
  • How you shipping the apk

Some people have answered to your question try that

And if your app is open source then share the project with me I'll have a look and test in different devices

Also

If your friend has xiaomi phone then apk will not install. solution : you need to sign the apk (you can google this) before sending

  •  Tags:  
  • Related