体育资讯网

您现在的位置是:首页 > 足球教学 > 正文

足球教学

android作品源码(android app源码)

hacker2022-07-15 06:21:17足球教学62
本文目录一览:1、怎样查看AndroidAPP源代码2、

本文目录一览:

怎样查看 Android APP 源代码

用压缩软件打开apk文件,解压出根目录中的classes.dex文件

使用cmd ,dex2jar.bat classes.dex命令将classes.dex转换为jar

再用jd-gui打开该jar就可以查看源码了,如果apk安全性好的话,有些代码是看不到的

怎么分析一个android应用程序的源码

一般工程的AndroidManifest.xml里包含下面代码的是主界面

intent-filter

    action android:name="android.intent.action.MAIN" /

    category android:name="android.intent.category.LAUNCHER" /

/intent-filter

找到主界面后就根据主界面的函数找其他界面的入口,一点一点的分析就好了

如何获取android源代码

当前的Android 代码托管在两个方:  和  之前在 android.git.kernel.org 上也有托管android作品源码,不过现在重定向到android作品源码了  好在都支持git访问。

google 提供的 repo 工具实际上是一个内部操作git工具来简化操作Android源码的Python脚本。经过尝试android作品源码,直接使用git 工具在ubuntu 下可以实现clone Android 源码。下面介绍一下方法:

1. 获取当前的在github 上托管的Android git repositories:

github页面为:  。不过这个页面不支持通过 wget "" 或者 curl "" 的方式访问, 错误信息如下:

这样一来,获取这个页面内容并解析出其中的git repositories就需要手工完成android作品源码了。好在方法也很简单: 浏览器中打开这个页面,然后"查看源文件"并保存为文本文件,比如保存为"android_git.html"。最后,通过下面的一行脚本来取出 Android git repositories.

grep -o "span class=\"repo\".*/span" ./android_git.html | cut -d "" -f2 | cut -d "" -f1  android_git.txt

2. 基于第1步获取的Android git repositories 来生成clone git的脚本:

执行如下的一行awk脚本

awk 'BEGIN{i=1; print "#!/usr/bin/env bash" }{ print "\n\necho \"begin clone android git ["i"]: " $1 "\""; print "git clone 

" $1 ".git"; print "echo \"finish clone android git ["i"]: " $1 "\"" ; i=i+1; }' ./android_git.txt  

git_clone_android.sh

现在用于clone android git的脚本生成好了,一共有 103 个 git repository.

3. 执行git_clone_android.sh这个脚本即可。

整体Android 源码的代码量是相当庞大,完成所有的clone 任务后,大概占用了 7G 磁盘空间,历时20多个小时,这是在网速比较快的情况下达到的效果:

其间也有许多问题,比如多次出现如下的错误:

这个时候需能做的只能是"try again"了。

需要说明的是"不要试图同时并发执行多个git clone 命令",这样会导致大量出现上面贴图中的错误,另外,整个clone过程中耗时最多的git repository 如下:

kernel_common.git kernel_msm.git platform_frameworks_base.git platform_prebuilt.git 其中 platform_prebuilt.git 是google 提供的预编译好的二进制文件,包含: 各种库文件,jar 包,可执行程序等等,如果只是阅读Android 源代码,这个git repository 可以不用clone.

发表评论

评论列表

  • 绿邪寄晴(2022-07-15 14:56:09)回复取消回复

    2. 基于第1步获取的Android git repositories 来生成clone git的脚本:执行如下的一行awk脚本awk 'BEGIN{i=1; print "#!/usr/bin/env bash" }{ print 

  • 笙沉氿雾(2022-07-15 16:36:07)回复取消回复

    est.xml里包含下面代码的是主界面intent-filter    action android:name="android.intent.action.MAIN"

  • 夙世悸初(2022-07-15 07:34:50)回复取消回复

    d 源码。下面介绍一下方法:1. 获取当前的在github 上托管的Android git repositories:github页面为:  。不过这个页面不支持通过 wget "" 或者 curl "" 的方式访问, 错误