# キャプチャー
adb shell screencap -p /sdcard/screen.png

# ファイル取得
adb pull /sdcard/screen.png

# デバイス一覧
adb devices

# デバイス指定
adb -s [deviceId] pull /sdcard/screen.png

# インストール
adb install package.apk

# アンインストール
adb uninstall package.name

# パッケージ情報の取得
adb shell dumpsys package package.name

# 現在表示されてる Activity の取得
adb shell dumpsys window | grep mCurrentFocus
mCurrentFocus=Window{6f7463b u0 com.example.mybottombar/com.example.mybottombar.MainActivity}

# データ削除
adb shell pm clear package.name

# adb Wifi 接続
# 192.168.10.104 はAndroid端末のIPアドレス
adb tcpip 5555
adb connect 192.168.10.104

https://developer.android.com/studio/command-line/adb?hl=ja

 
 

 

 

アプリの Digital Color Meter を起動

マウスで取得したい位置へ移動

Command+L ロック

メニュー

表示ー>値の表示 で 16進に変更

カラーメニューよりテキストコピー

AndroidStudio で Gradle7 を使うようになって JDK11 が必須となり、JDK1.8 のプロジェクトを JDK11 に切り替える必要があり頻繁にJDK11 と JDK1.8 を切り替える必要があり zsh の alias でしのいでいましたが行けていなかったので調査

結果以下で対応

.zshrc

jdk() {
    version=$1
    unset JAVA_HOME;
    echo "/usr/libexec/java_home -v$version";
    export JAVA_HOME=`/usr/libexec/java_home -v$version`;
    java -version
}

使い方、コマンドラインから jdk 1.8 or jdk 11

gradle でバージョンを指定する時は、 compileSdkVersion rootProject.ext.compileSdkVersion で指定したり compileSdkVersion buildConfig.compileSdk 等と指定したりしていましたが、
compileSdk build_versions.compile_sdk と言う記述を見つけました。
これからは、上記を使おうかと思います。

versions.gradle ファイル

def build_versions = [:]
build_versions.min_sdk = 14
build_versions.compile_sdk = 31
build_versions.target_sdk = 31
build_versions.build_tools = "31.0.0"
ext.build_versions = build_versions

def versions = [:]
versions.activity = '1.1.0'
versions.core_ktx = "1.1.0"
ext.versions = versions

build.gradle

buildscript { 
    apply from: 'versions.gradle' 
} 

android { 
    compileSdk build_versions.compile_sdk 
} 

dependencies { 
    implementation "androidx.core:core-ktx:${versions.core_ktx}" 
}

 

deps. までは、やらないかな

https://github.com/android/architecture-components-samples/blob/main/BasicSample/app/build.gradle

https://gist.github.com/Schadenfeude/8ed81dd06f01d6eeab571555fc8308d1

./gradlew tasks
© 2024 Falco Tech Blog Suffusion theme by Sayontan Sinha