Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I am looking for a method that allows me to press freely on the Android screen. Simply put, it would emulate what a person can do to move on the Android device
I want him to press the buttons of this game. I want to make a bot.
To get the control of the keystrokes from a background app you need to be root. Instead of that, you can use monkeyrunner to make scripts using Python. Another option is to use direct commands in ADB, as stated in this answer. Every option needs to be connected to a computer via USB cable.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I am new in android development ,My question is
what does it mean to have an android app with a control panel , Is it possible to control app after release ?
usually when somebody wants to make a mobile application, he creates a control panel using any back-end (php, java, node.js ...etc)
so he can control the API (if your app uses API call), he may also want to disable the application, so in each run in the application side, an API call will be invoked to check for availability.
you can do more complicated things but that is the basic
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
want to automatically turn on geolocation?
thanks all
I want to automatically turn on geolocation.
Sorry, but you can't.
The device belongs to the user, and you can only turn geolocation with the user's permission, as granted (or denied) by that prompt.
The best you can do is to display a message to the user telling them that your app cannot run unless they enable geolocation. However, it is their choice to enable it, or not.
You can do something like the user can't use the app until you get their location.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to create a tutorial for my app that will show the user how to use it. For example when you first run an android device it teaches you how to use the system.
I want my tutorial to just tell the user to swipe the screen to the left and then click on a button.
Check out the ShowcaseView library on Github. I guess that'll fit your needs.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Im developing an android keyboard.
I have to know how I can add my app as system app so,
my keyboard will be able to use everywhere in the phone like any keyboard.
As base im using this:link
Your app doesn't need to be a system app. System apps - are apps are apks bundled by manufacturer and resides in separate directory.
You may check your AndroidManifest. Manifest must promote this app as IME.
If you will add your apps in system apps section, you will create your own rom or rooted device. Maybe read this.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I want to create a website for users to upload videos, but I want to do some compression/conversion on the client-side first before actually uploading to my servers. This should cut down on upload times I hope.
My inital thought is to make a Java Applet, since I imagine Flash wouldn't have ffmpeg on the client-side. I'm not sure what version of Java to use, or whether to use Java Web FX. I haven't touched Java in years, so I don't even know what IDE or SDK to use (I'm on a Mac).