Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dskinner/sublimeandroid
Sublime Text 3 plugin for Android development
https://github.com/dskinner/sublimeandroid
Last synced: 11 days ago
JSON representation
Sublime Text 3 plugin for Android development
- Host: GitHub
- URL: https://github.com/dskinner/sublimeandroid
- Owner: dskinner
- License: bsd-2-clause
- Created: 2012-12-02T07:23:44.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-03-23T04:07:36.000Z (over 11 years ago)
- Last Synced: 2023-04-18T22:12:09.932Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 190 KB
- Stars: 60
- Watchers: 12
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.bsd
Awesome Lists containing this project
README
# SublimeAndroid
## NOTICE
This project is currently on hold (not discontinued) as much of the functionality
for completions are being continued here: https://github.com/quarnster/completionThis is a work in progress for SublimeText 3!
Expects a properly configured android project via sdk command line tools. From
project directory:```
android update project -p ./
```## Installation
This package depends on a submodule.
For a fresh install:
```
git clone --recursive git://github.com/dskinner/SublimeAndroid.git
```If updating from a previous install without the submodule
```
git pull
git submodule init
git submodule update
```## Features
* Automatically configures external packages.
* SublimeJava
* SublimeLinter
* ADBView
* Identifies project directory and target platform for autocompletion.
* XML autocompletion (incomplete) in layouts for tags, attributes and values.
* Identifies multiple android projects in a sublime project.
* Build commands for ant
* Launch sdk tools## Setup automatic builds
### Ant
Create a new target in `custom_rules.xml`:
```xml
```
Add the following to sublime project settings
```
"sublimeandroid_default_ant_target": "compile"
```This will perform just enough to allow for quick builds and provide autocompletion via SublimeJava