-2

I have an exe file working on my desktop, I want to run it on my android mobile. Is there an easy way for it?

Hassan Serhan
  • 392
  • 3
  • 13

1 Answers1

2

No. '.exe' is exclusively for Windows operating system. You need an '.apk' extension file to install in Android.

SoftwareGuy
  • 1,121
  • 2
  • 11
  • 23
  • If the code is in python, what do i need to do it for android? – Hassan Serhan Nov 13 '20 at 16:37
  • Other than converting your code to JAVA / Kotlin , I don't thing there is any other way. Basically you need to rewrite every line of code which can be understandable buy Android. You can build apps for Android using JAVA / C++ / Kotlin – SoftwareGuy Nov 13 '20 at 16:43
  • 1
    Check this link -> https://stackoverflow.com/questions/101754/is-there-a-way-to-run-python-on-android – SoftwareGuy Nov 13 '20 at 16:44