How To Install dummydroid on Debian 9
Introduction
In this tutorial we learn how to install dummydroid on Debian 9.
What is dummydroid
dummydroid is:
Dummy Droid allows you to create hardware profiles for arbitrary Android devices and upload them into your Google Play account, thereby creating a “Google Services Framework ID”.
Mocks can either be generated from the /system/build.prop file of existing hardware or be completely made up from scratch. You (may) need this tool if Google Play won’t give you access to an app because of device incompatibilities, country or carrier restrictions. You (may) also need this tool if you are an app developer yourself and want to test compatibility filter settings without actually owning the target device.
Word of warning: Dummy Droid grants you absolute freedom, including the freedom to specify absolute nonsense (such as a smart-tv with a screensize of 1 pixel). Please pay attention to the instructions and use a throw-away account for testing. Otherwise you might end up with dozens of mocks in your main account you cannot get rid of again!
There are three methods to install dummydroid on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install dummydroid Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install dummydroid using apt-get by running the following command:
sudo apt-get -y install dummydroid
Install dummydroid Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install dummydroid using apt by running the following command:
sudo apt -y install dummydroid
Install dummydroid Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install dummydroid using aptitude by running the following command:
sudo aptitude -y install dummydroid
How To Uninstall dummydroid on Debian 9
To uninstall only the dummydroid package we can use the following command:
sudo apt-get remove dummydroid
Uninstall dummydroid And Its Dependencies
To uninstall dummydroid and its dependencies that are no longer needed by Debian 9, we can use the command below:
sudo apt-get -y autoremove dummydroid
Remove dummydroid Configurations and Data
To remove dummydroid configuration and data from Debian 9 we can use the following command:
sudo apt-get -y purge dummydroid
Remove dummydroid configuration, data, and all of its dependencies
We can use the following command to remove dummydroid configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge dummydroid
Dependencies
dummydroid have the following dependencies:
References
Summary
In this tutorial we learn how to install dummydroid package on Debian 9 using different package management tools: apt, apt-get and aptitude.