Vim Tips Wiki
(Created page with "Adt.vim is an utility for android development, it works on the current folder, you must ensure that the initial path contains a AndroidManifest.xml file. Functions: AdtLogc...")
 
(Standard format, and replace the documentation with an overview (please document on the script page).)
 
Line 1: Line 1:
  +
{{ScriptComments|adt: Android development utility}}
Adt.vim is an utility for android development, it works on the current folder, you must ensure that the initial path contains a AndroidManifest.xml file.
 
   
  +
==Overview==
Functions:
 
 
Adt.vim is a utility for Android development. It works on the current folder so you must ensure that the initial path contains an AndroidManifest.xml file.
AdtLogcat Fetch logs from android device and display in copen window. If there are error or warning stacks, it will be recorgnized as error, so that you can switch between error message and codes by :cn and :cp. By default, it is mapped as "Al"
 
   
  +
Logs can be fetched from an Android device and displayed in the copen window, where error and warning messages are recognised. You can build or run the current Android application, while viewing errors from the build.
AdtBuild` Build the current android application, make sure there are build.xml and AndroidMenifest.xml in current folder. The build log will be displayed in copen window, so
 
that you can switch between error message and codes by :cn and :cp. By default, it is mapped as "Ab"
 
   
  +
==Comments==
AdtRun Run the current android application, make sure there are build.xml and AndroidMenifest.xml in current folder. By default, it is mapped as "Ar"
 
 
AdtClean Clean the current android application build envirovement. By default, it is mapped as "Ac"
 

Latest revision as of 06:04, 3 December 2012

Use this page to discuss script 4330 adt: Android development utility

  • Add constructive comments, bug reports, or discuss improvements (see the guideline).
  • Do not document the script here (the author should do that on vim.org).
  • This page may be out of date: check the script's vim.org page above, and its release notes.

Overview[]

Adt.vim is a utility for Android development. It works on the current folder so you must ensure that the initial path contains an AndroidManifest.xml file.

Logs can be fetched from an Android device and displayed in the copen window, where error and warning messages are recognised. You can build or run the current Android application, while viewing errors from the build.

Comments[]