• 【appium】查看Android应用包名、Activity的几个方法


    一、有源码情况

    直接打开AndroidManifest.xml文件,找到包含android.intent.action.MAIN和android.intent.category.LAUNCHER对应的activity。

    如下图中第三行package为com.cola.ui,第七行主Activity为com.cola.ui.ColaBox(.ColaBox为Activity简写方式)。

     

        <?xml version="1.0" encoding="utf-8"?>  
        <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
              package="com.cola.ui"  
              android:versionCode="1"  
              android:versionName="1.0.0">  
            <application android:icon="@drawable/icon" android:label="@string/app_name">  
                <activity android:name=".ColaBox"  
                          android:label="@string/app_name">  
                    <intent-filter>  
                        <action android:name="android.intent.action.MAIN" />  
                        <category android:name="android.intent.category.LAUNCHER" />  
                    </intent-filter>  
                </activity>  
            <activity android:name="Frm_Addbills"></activity>  
            <activity android:name="Frm_Editacctitem"></activity>  
            <activity android:name="Grid_bills"></activity>  
            <service android:name="LocalService" android:exported="true" android:enabled="true"/>   
          
           </application>  
         <uses-permission android:name="android.permission.READ_CONTACTS" />  
           
           
        </manifest>   
    

    二、只有Apk的情况

    (1)aapt

    使用命令行aapt dump xmltree ColaBox.apk AndroidManifest.xml



    (2)使用apktool

    使用反编译工具apktool,反编译后打开AndroidManifest.xml文件,查找方式同“有源码情况”



    (3)aapt




    三、没有apk,应用已经安装到手机或虚拟机中

    1.logcat

    .清除logcat内容,使用命令adb logcat -c

    .启动logcat,使用命令adb logcat ActivityManager:I *:s

    .启动要查看的程序,



    2.dumpsys

    (1)启动要查看的程序;

    (2)命令行输入:adb shell dumpsys window w |findstr / |findstr name=


  • 相关阅读:
    坑爹的Android Ble 问题记录日志
    Android4.3 蓝牙BLE初步
    Bluetooth Low Energy——蓝牙低功耗
    Bluetooth LE(低功耗蓝牙)
    Bluetooth LE(低功耗蓝牙)
    Bluetooth LE(低功耗蓝牙)
    Bluetooth LE(低功耗蓝牙)
    Bluetooth LE(低功耗蓝牙)
    C#中“@”的作用和用法
    C#中对输出格式的初始化
  • 原文地址:https://www.cnblogs.com/paulwinflo/p/4739734.html
Copyright © 2020-2023  润新知