「Android/開発環境/AndroidStudio/起動コマンド」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→コマンドでの起動&実行) |
|||
行1: | 行1: | ||
+ | ==adbコマンド== | ||
+ | $ vi ~/.bash_profile | ||
+ | alias adb='~/Library/Android/sdk/platform-tools/adb' | ||
+ | |||
+ | $ source ~/.bash_profile | ||
+ | |||
+ | ===test=== | ||
+ | $ adb logcat | ||
+ | |||
+ | $ ~/Library/Android/sdk/platform-tools/adb logcat | ||
+ | |||
==コマンドでのdebugインストール&起動&実行== | ==コマンドでのdebugインストール&起動&実行== |
2019年9月11日 (水) 12:29時点における最新版
adbコマンド
$ vi ~/.bash_profile alias adb='~/Library/Android/sdk/platform-tools/adb'
$ source ~/.bash_profile
test
$ adb logcat
$ ~/Library/Android/sdk/platform-tools/adb logcat
コマンドでのdebugインストール&起動&実行
$ ./gradlew installDebug $ adb install -r ./app/build/outputs/apk/debug/app-debug.apk $ adb shell monkey -p [package名] -c android.intent.category.LAUNCHER 1
参考:https://qiita.com/FumihikoSHIROYAMA/items/2c07d91c402ee3daf5e2
gradleパス登録したい場合
$ ./gradlew
でもできるが
gradleを探す
macだとgradleはこのあたりにある ~/.gradle/wrapper/dists/gradle-4.4-all/4th6d42q1kgladv9hkn2iehgi5/gradle-4.4/bin/gradle
パス登録
$ vi ~/.bash_profile export GRADLE_HOME=~/.gradle/wrapper/dists/gradle-4.4-all/4th6d42q1kgladv9hkn2iehgi5/gradle-4.4/bin export PATH=$GRADLE_HOME:$PATH $ source ~/.bash_profile
実行確認(build.gradle直下で)
$ gradle clean