Lines Matching refs:install
37 …it must be signed before it can install on an emulator or device—with a debug key when build…
41 …and build your project. This will create the .apk file that you can install on an emulator or devi…
60 <p class="note"><strong>Note:</strong> When installing JDK on Windows, the default is to install
65 <p>The easiest solution, however, is to install JDK in a non-space directory, for example:</p>
72 and immediately install it on an emulator. In debug mode, the build tools automatically sign your
95 <p>To install and run your application on an emulator, see the following section about <a href=
189 <p>Once you have signed your application with a private key, you can install and run it on an
219 <p>From your SDK's <code>tools/</code> directory, install the {@code .apk} on the
222 adb install <em><path_to_your_bin></em>.apk
229 install the application, by its serial number, with the <code>-s</code> option. For
232 adb -s emulator-5554 install <em>path/to/your/app</em>.apk
240 virtual device again from the AVD Manager. Sometimes when you install an application for the
253 build your application and install it on the emulator in one simple step. Navigate to the root of
254 your project directory and use Ant to compile the project with <em>install mode</em>: <code>ant
255 install</code>. This will build your application, sign it with the debug key, and install it on
274 directory and install the <code>.apk</code> on the device:</p>
276 adb -d install <em>path/to/your/app</em>.apk
295 digitally signed before the system will install them on an emulator or device. There are two ways
300 debug key at build time. This means that you can compile your application and install it on the
340 <dt><code>ant <build_target> install</code></dt>
341 <dd>Builds and installs a package. Using <code>install</code> by itself fails.</dd>
368 <dt><code>ant emma debug install test</code></dt>