Something about Android
Страницы
(Переместить в ...)
Головна сторінка
▼
четверг, 16 мая 2019 г.
Git hooks
›
Original info: https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks My goal: Validate commit message and deny commit if a comment di...
вторник, 11 декабря 2018 г.
Get top activity
›
adb shell "dumpsys activity | grep top-activity"
среда, 13 июня 2018 г.
Print custom data to JUnit success result
›
@Test public void test() { out("Current device = SM-G920F"); } private void out(String str) { ...
Add KV data to JUnit test (console run)
›
adb shell am instrument -w -e class com.example.developer.appname.SomeTests#testName -e key1 param1 -e key2 param2 com.example.developer.a...
Run anroid JUnit test with android JUnit runner from console
›
adb shell am instrument -w -e class com.example.developer.appname.SomeTests#testName com.example.developer.appname.test/android.support.te...
вторник, 20 февраля 2018 г.
adb getprop
›
Get device properties by adb (tested on API 19, 25) adb shell getprop for custom prop(example: get device name (String)) (tested on API...
adb get settings system
›
Get system device settings by adb (tested on API 25) adb shell settings list system for custom setting (example: get current system vol...
adb get settings secure
›
Get secure device settings by adb (tested on API 25) adb shell settings list secure for custom setting (example: get current mock_locat...
adb get settings global
›
Get global device settings by adb (tested on API 25) adb shell settings list global for custom setting (example: get current bluetooth ...
1 комментарий:
среда, 10 января 2018 г.
Hello world
›
Собственно, попробуем начать здесь.
Главная страница
Открыть веб-версию