0

I want to run a python script that I've made on a phone but as its standalone application.

Is there a way to use pydroid to make my script its standalone application. When you launch my app it has pydroid under the hood that just executes my script and nothing else.

I don't need a UI, I just need to command line interface provided by default in pydroid when it runs python.

BreezeWind
  • 618
  • 1
  • 9
  • 18

2 Answers2

0

If you have access to the AndroidManifest.xml file you could follow this other thread. If you go the route of trying to edit the source code files you may need to make sure that you have installed the editable version of pydroid ./install_pydroid_editable.py as per their README

duppydodah
  • 165
  • 1
  • 3
  • 17
0

Check out QPython3l as it allows this without any changing of a manifest.

Create a script, tap and hold on it, and there you go. It will appear as a shortcut that when tapped will open a QPython3l terminal and run the script.

HavenSelph
  • 51
  • 7