emacsでandroidアプリ開発してみようとした
このページが非常にわかりやすかったので内容そのままなんですけどメモメモ
http://qiita.com/items/e7280a5dfff1594125a3
■エミュレータ起動
emulator -avd 仮想でバイス名
■プロジェクト作成
android create project ¥
--name helloworld
--target 10 ¥
--path ./helloworld ¥
--package com.sample.helloworld ¥
--activity helloworld
■コンパイル
プロジェクトディレクトリで、
ant
■エミュレータにインストール
abd install ./bin/helloworld.apk
アップデートの場合は
adb install -r ./bin/helloworld.apk
■ログ表示
adb logcat -v time