zoukankan      html  css  js  c++  java
  • STF日志提示 Not found ; no service started

    现象:华硕手机无法被识别,插上以后,后台提示“Setup had an error: Error: Not found ; no service started”,“Shutting down due to fatal error”。

    日志报错:

    2021-08-05T03:18:20.757Z FTL/device 5498 [K1AXGF01376762H] Setup had an error Error: Service had an error: "Error: Not found; no service started."

    2021-08-05T03:18:20.759Z FTL/util:lifecycle 5498 [K1AXGF01376762H] Shutting down due to fatal error

    2021-08-05T03:18:20.773Z ERR/provider 4807 [*] Device worker "K1AXGF01376762H" died with code 1

    原因:手机不允许在初次安装的时候直接启动service,需要“激活”activity,才能“注册”上service。

    解决:

    %cd stf/

    %adb install -r vendor/STFService/STFService.apk

    Performing Streamed Install

    Success

    %adb shell pm list packages

    #搜索stf,发现STFService.apk包名:

    package:jp.co.cyberagent.stf

    %adb uninstall jp.co.cyberagent.stf
    %adb install -r vendor/STFService/STFService.apk
    %adb shell am start -n jp.co.cyberagent.stf/.IdentityActivity
    %adb shell am startservice  -n jp.co.cyberagent.stf/.Service

  • 相关阅读:
    线程池原理和实现
    线程
    ajax、xstream、json
    上传、下载、javamail
    过滤器
    监听器、国际化
    jsp、javabean、el
    jstl、标签
    jsp、cookie、httpsession
    个人觉得比较好用的chrome插件
  • 原文地址:https://www.cnblogs.com/Tanwheey/p/15102548.html
Copyright © 2011-2022 走看看