当前位置:首页 » 安卓系统 » 安卓包名怎么看

安卓包名怎么看

发布时间: 2022-06-01 03:54:52

Ⅰ 安卓的包名是什么意思

比如“手机QQ”,包名就是com.tencent.mobileqq
软件安装完后,在/data/app(不是/system/data/app)目录下的就是软件的包名,后面-1,-2,就是你第一次安装或者更新安装的意思。

Ⅱ 如何获得Android系统自带的应用程序的包名

下载一个叫“Link2sd”的应用程序,安装后即可看到手机内应用的包名了,望能采纳谢谢!

Ⅲ 请问如何获取安卓正在前台运行的应用程序的包名

在framework中想添加这个功能,所以写了个appliction来实现一下获取正在运行的应用程序: 还是先看图吧: 这个app主要是简单的实现了获取非系统的应用程序和一些常用的系统应用程序,显示在一个listview中,并添加了点击(回复到你打开的界面)和长按事件(关闭应用程序)。 看看代码吧: 直接贴出来再加上注释吧(直接写在一个文件里): package andorid/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <ImageView android:id="@+id/icon" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:layout_width="40dip" android:layout_height="40dip" /> <LinearLayout android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:id="@+id/name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textStyle="bold" /> <TextView android:id="@+id/info" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout> </LinearLayout> main: <?xml version="1/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <ListView android:id="@+id/list_view" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" ></ListView> </LinearLayout> 在manifest文件中要加以个权限: <uses-permission android:name="android.permission.RESTART_PACKAGES" /> 主要是前面的am.killBackgroundProcesses(packageName);方法要这个权限。

Ⅳ 如何获取安卓程序包名

用RE管理器进入
|data|app
(那个|是反斜杠的意思)
这样就能看到应用的包名了,最后带的-1.apk不算。

linux怎么用命令看android手机上已安装应用的名字,包名,版本,图标。比如adb什么的。

有一个相关adb 命令可以查看已安装应用的包名:


  • adb shell

  • su (需要获取系统管理员权限,也就是说手机必须root过才能执行下一步的命令)

  • ls -l /data/app


如图。至于版本号,图标这些东西在命令行是看不到的,都在应用内部打包了。

Ⅵ 怎么查打包好的app域名

可以查打包好的app域名的方法如下
安卓系统的步骤。依次打开设置→应用管理→正在运行→要查看的app在最下面就可以看到包名了。
ios系统在iTunes下载应用,进入Music → iTunes → iTunes Media → Mobile Applications目录→ipa文件→zip文件→ app文件→info.plist→搜索“scheme”关键字→得到url scheme!

Ⅶ 怎么查看手机app应用包名是什么

  1. 下载一个叫“Link2sd”的应用程序,安装后即可看到手机内应用的包名了。

  2. 没有apk,应用已经安装到手机或虚拟机中.logcat;清除logcat内容,使用命令adb logcat -c,.启动logcat,使用命令adb logcat ActivityManager:I *:

  3. 源码情况;直接打开AndroidManifest.xml文件,

  4. 找到包含android.intent.action.MAIN和android.intent.category.LAUNCHER对应的activity。

Ⅷ 手机上已安装的APP软件,怎么找到安装APK文件

找APK文件分为数据文件和缓存文件,数据文件一般存在根目录里、需要有root权限才能查看,缓存文件又分两种缓冲文件、存储文件,存储文件一般在Android/data里、文件名就是全称软件包名,而缓冲文件在主目录上文件名就是软件包名。用X-plore软件可以看。

Ⅸ 如何查看Android应用apk的包名和入口Activity名称

Android开发过程中我们有时需要使用第三方apk资源,而启动第三方apk在某些情况下需要指定相应的包名和启动的Activity名,这个时候就需要获取这两个名称,我们可以使用如下三种方法:

1、使用aapt //aapt是sdk自带的一个工具,在你安装的Eclipse路径下的sdk\build-tools\中,如我的是D:\Eclipse\androidTools\sdk\build-tools\android-4.4.2,如果你下载有apk反编译工具,也可以直接使用里面的aapt

以“GO备份.apk”为例,先进入cmd命令行窗口,然后运行:D: -> Eclipse\androidTools\sdk\build-tools\android-4.4.2
-> aapt mp badging C:\Users\Administrator\Desktop\GO备份.apk,即可获取到AndroidManifest.xml中我们需要的内容,如

package: name='com.jiubang.go.backup.ex'

launchable-activity: name='com.jiubang.go.backup.pro.StartupPageActivity'

2、查看AndroidManifest.xml

同样是查看AndroidManifest.xml,这里我们可以采用反编译方法来获取信息,同样是打开cmd命令行窗口,然后运行:E:
-> apk反编译工具\apktool\apktool -> apktool.bat d -f C:\Users\Administrator\Desktop\GO备份.apk GO备份,然后打开“GO备份”文件夹,打开droidManifest.xml文件,找到manifest节点的package属性值package="com.jiubang.go.backup.ex"语句即为包名,查找android.intent.action.MAIN和android.intent.category.LAUNCHER对应的activity,该activity对应的android:name属性即为入口activity名称,如<activity
android:name="com.jiubang.go.backup.pro.StartupPageActivity"。

3、使用uiautomatorviewer

可以直接在命令行输入uiautomatorviewer,打开获取屏幕截图工具,连接手机,打开所要获取包名的应用,然后获取其截图,根据截图查看package即可,uiautomatorviewer的使用这里就不做介绍了。使用这个需要注意的是,该app必须是有界面的,否则无法获取。

另外,

android.intent.action.MAIN 属性决定应用程序最先启动的Activity

android.intent.category.LAUNCHER属性决定应用程序是否显示在程序列表里

Ⅹ 一个安卓应用的.apk怎么查看包名

一个安卓应用的.apk查看包名的具体步骤如下:

1、首先将手机和电脑连接在一起,点击打开开始菜单栏中的“运行”选项。

热点内容
手机如何给u盘加密 发布:2025-08-20 12:56:30 浏览:671
自动更新源码 发布:2025-08-20 12:48:36 浏览:743
已关联的qq为什么还要验证密码 发布:2025-08-20 12:46:01 浏览:814
c语言vector用法 发布:2025-08-20 12:46:00 浏览:460
lol脚本代练封号 发布:2025-08-20 12:44:39 浏览:57
时空幻境安卓版哪里有 发布:2025-08-20 12:43:43 浏览:288
解压抠画妆 发布:2025-08-20 12:41:34 浏览:844
华彩人生电脑版无法连接服务器 发布:2025-08-20 12:26:41 浏览:984
xp脚本错误 发布:2025-08-20 12:11:19 浏览:845
租用服务器有什么优势 发布:2025-08-20 12:06:32 浏览:872