103style / AndroidTools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AndroidTools

工具使用

  • 如何托管项目到github

  • git 配置 ssh

  • git 配置/取消 代理

    git config --global https.proxy http://127.0.0.1:1080
    git config --global http.proxy http://127.0.0.1:1080
    
    git config --global --unset https.proxy
    git config --global --unset http.proxy
    
  • apktools反编译apk

  • dex2jar

  • 获取应用的MD5,SHA1,SHA256信息

  • 一键生成Android iOS icon尺寸 ---- 使用方法--- forked here

  • gradle 相关

  • lint配置

  • 抓Android日志脚本

  • 通过Appbundle上架google play

  • 查看应用进程信息

    //查看应用包名所在的进程信息
    > adb shell ps -t | grep 包名
    USER      PID   PPID  VSIZE   RSS   WCHAN      PC         NAME
    u0_a239   7499  569   1131304 53268 SyS_epoll_ 00000000 S com.lxk.test
    
    //查看进程的所有线程 利用包名对应的 USER 值
    //u0_a239 是根据包名查出的 USER 值
    > adb shell ps -t | grep u0_a239
    USER      PID   PPID  VSIZE   RSS   WCHAN      PC         NAME
    u0_a239   7499  569   1131304 53268 SyS_epoll_ 00000000 S com.lxk.test
    u0_a239   7504  7499  1131304 53268 do_sigtime 00000000 S Signal Catcher
    u0_a239   7505  7499  1131304 53268 poll_sched 00000000 S JDWP
    u0_a239   7506  7499  1131304 53268 futex_wait 00000000 S ReferenceQueueD
    u0_a239   7507  7499  1131304 53268 futex_wait 00000000 S FinalizerDaemon
    u0_a239   7508  7499  1131304 53268 futex_wait 00000000 S FinalizerWatchd
    u0_a239   7509  7499  1131304 53268 futex_wait 00000000 S HeapTaskDaemon
    u0_a239   7510  7499  1131304 53268 binder_thr 00000000 S Binder_1
    u0_a239   7511  7499  1131304 53268 binder_thr 00000000 S Binder_2
    u0_a239   7514  7499  1131304 53268 futex_wait 00000000 S .1, thread No.1
    u0_a239   7525  7499  1131304 53268 SyS_epoll_ 00000000 S RenderThread
    u0_a239   7530  7499  1131304 53268 futex_wait 00000000 S hwuiTask1
    u0_a239   7531  7499  1131304 53268 futex_wait 00000000 S hwuiTask2
    u0_a239   11619 11600 1127052 48216 binder_thr 00000000 S Binder_3
    

About

License:GNU General Public License v3.0


Languages

Language:Shell 56.3%Language:Batchfile 43.7%