<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.weweweb.net/wiki/index.php?action=history&amp;feed=atom&amp;title=Androidsdkemulator</id>
	<title>Androidsdkemulator - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.weweweb.net/wiki/index.php?action=history&amp;feed=atom&amp;title=Androidsdkemulator"/>
	<link rel="alternate" type="text/html" href="https://www.weweweb.net/wiki/index.php?title=Androidsdkemulator&amp;action=history"/>
	<updated>2026-05-14T12:00:43Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.5</generator>
	<entry>
		<id>https://www.weweweb.net/wiki/index.php?title=Androidsdkemulator&amp;diff=79&amp;oldid=prev</id>
		<title>Willy: Created page with &quot;===Start the emulator===   emulator -avd &lt;avd_name&gt;  ===Installing the package===    adb install bin\LunarLander-debug.apk  ===Uninstalling Android packages===  All the instal...&quot;</title>
		<link rel="alternate" type="text/html" href="https://www.weweweb.net/wiki/index.php?title=Androidsdkemulator&amp;diff=79&amp;oldid=prev"/>
		<updated>2022-01-27T03:57:01Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;===Start the emulator===   emulator -avd &amp;lt;avd_name&amp;gt;  ===Installing the package===    adb install bin\LunarLander-debug.apk  ===Uninstalling Android packages===  All the instal...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;===Start the emulator===&lt;br /&gt;
  emulator -avd &amp;lt;avd_name&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Installing the package===&lt;br /&gt;
&lt;br /&gt;
  adb install bin\LunarLander-debug.apk&lt;br /&gt;
&lt;br /&gt;
===Uninstalling Android packages===&lt;br /&gt;
&lt;br /&gt;
All the installed packages can be removed from the emulator using the adb program. First, we should run the shell:&lt;br /&gt;
&lt;br /&gt;
  &amp;gt; adb shell&lt;br /&gt;
  #&lt;br /&gt;
&lt;br /&gt;
The # sign is the shell prompt we should wait for. When the shell is ready, we have to go to the packages directory:&lt;br /&gt;
&lt;br /&gt;
  # cd /data/app&lt;br /&gt;
&lt;br /&gt;
Now, we have to find out the files in this directory:&lt;br /&gt;
&lt;br /&gt;
  # ls&lt;br /&gt;
  com.example.android.lunarlander.apk&lt;br /&gt;
  ApiDemos.apk&lt;br /&gt;
&lt;br /&gt;
As we can see, our LunarLander project is there. We can remove it (&amp;quot;uninstall&amp;quot;) with the command:&lt;br /&gt;
&lt;br /&gt;
  # rm com.example.android.lunarlander.apk&lt;br /&gt;
&lt;br /&gt;
The shell session can be finished with the exit command.&lt;br /&gt;
&lt;br /&gt;
When we know the name of the package to uninstall, it can be done with single command. For example, in our case we could've done:&lt;br /&gt;
&lt;br /&gt;
  &amp;gt; adb shell rm /data/app/com.example.android.lunarlander.apk&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
&lt;br /&gt;
  &amp;gt; adb uninstall com.example.android.lunarlander&lt;br /&gt;
&lt;br /&gt;
===Read Console (Debug) Log===&lt;br /&gt;
  adb logcat&lt;br /&gt;
&lt;br /&gt;
===Dex Dump===&lt;br /&gt;
  adb shell dexdump -d -f -h /data/dalvik-cache/data@app@net.weweweb.android.bridge.apk@classes.dex&lt;br /&gt;
  &amp;gt; text.txt&lt;/div&gt;</summary>
		<author><name>Willy</name></author>
	</entry>
</feed>