当前位置:   article > 正文

【Android应用开发技术:基础构建】命令行下的Android应用开发

android中启动android sdk和avd管理器的命令是什么

作者:郭孝星
微博:郭孝星的新浪微博
邮箱:allenwells@163.com
博客:http://blog.csdn.net/allenwells
githubhttps://github.com/AllenWell

一 AVD管理

AVD管理相关命令例如以下所看到的:

  • android avd : 打开AVD管理器
  • android list : 列举已经安装的Android版本号和Android模拟器
  • android list avd : 列举已经安装的Android模拟器
  • android list device : 列举已经连接的Android设备
  • android create avd : 创建Android模拟器
  • android move avd : 移动或重命名Android模拟器
  • android delete avd : 删除Android模拟器
  • android update avd : 更新Android模拟器

二 SDK管理

SDK管理相关命令例如以下所看到的:

  • android sdk : 打开SDK管理器
  • android list sdk : 列举远程SDK版本号
  • android list target : 列举已经安装的Android版本号
  • android update sdk : 更新SDK

三 SD卡管理

当我们创建一个AVD时。系统会自己主动创建虚拟存储卡,假设我们想单独创建虚拟存储卡,能够使用命令mksdcard。

命令mksdcard语法格式例如以下所看到的:

mksdcard [-l label] <size> <file>
  • 1
  • size:执行虚拟SD卡大小
  • file:执行保存虚拟SDka的文件镜像

举例

创建一个60MB的SD卡,并将其镜像保存到D:\sdcard.img。

mksdcard 64M D:\sdcard.img
  • 1

四 设备调试

ADB(Android Debug Bridge)是有Google官方推出的调试工具,借助该工具能够管理Android设备或模拟器的状态。进行系统升级、应用管理等操作。

ADB的工作原理是监听Socket TCP5544端口的方式让IDE或DOS和Qemu进行通信。进而控制设备的状态。

4.1 AVD操作命令

1 显示系统中所有Android平台

android list targets
  • 1

2 显示系统中所有AVD

android list avd
  • 1

3 创建AVD

android create avd --name 名称 --target 平台编号
  • 1

4 启动AVD

emulator -avd 名称 -sdcard ~/名称.img (-skin 1280x800)
  • 1

5 删除AVD

android delete avd --name 名称
  • 1

6 搜索模拟器/设备的实例。取得当前执行的模拟器/设备的实例的列表及每一个实例的状态

adb devices
  • 1

7 获取设备的ID和序列号

  1. adb get-product
  2. adb get-serialno
  • 1
  • 2

4.2 APK操作命令

1 安装APK

adb install -r 应用程序.apk
  • 1

2 缷载apk包

  1. adb shell
  2. cd data/app
  3. rm apk包
  4. exit
  5. adb uninstall apk包的主包名
  6. adb install -r apk包
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

3 删除系统应用

  1. adb remount (又一次挂载系统分区,使系统分区又一次可写)
  2. adb shell
  3. cd system/app
  4. rm *.apk
  • 1
  • 2
  • 3
  • 4

4 启动Activity

adb shell am start -n 包名/包名+类名(-n 类名,-a action,-d date,-m MIME-TYPE,-c category,-e 扩展数据等)。
  • 1

5 启动SDK,文档,实例下载管理器

android
  • 1

2.3 系统操作命令

1 获取模拟器中的文件

adb pull <remote> <local>
  • 1

从设备或模拟器上复制一个文件或文件夹:

adb pull <source> <destination></destination></source>
  • 1

比如:

adb pull /addroid/lib/libwebcore.so
  • 1

2 向模拟器中写文件

adb push <local> <remote>
  • 1

一个设备或从一个设备中拷贝文件, 复制一个文件或文件夹到设备或模拟器上:

adb push <source> <destination></destination></source>
  • 1

比如:

adb push test.txt /tmp/test.txt
  • 1

3 进入模拟器的shell模式

adb shell
  • 1

4 查看adb命令帮助信息

adb help
  • 1

5 在命令行中查看LOG信息

adb logcat -s 标签名
  • 1

6 获取管理员权限

adb root
  • 1

7 公布端口

你能够设置随意的端口号,做为主机向模拟器或设备的请求端口。

如: adb forward tcp:5555 tcp:8000。

8 查看bug报告

adb bugreport
  • 1

9 记录无线通讯日志

一般来说。无线通讯的日志许多,在执行时不是必需去记录,但我们还是能够通过命令,设置记录:

  1. adb shell
  2. logcat -b radio
  • 1
  • 2

10 訪问数据库SQLite3

  1. adb shell
  2. sqlite3
  • 1
  • 2

五 项目管理

5.1 项目创建

Android项目创建相关命令例如以下所看到的:

  • android create project : 创建项目
  • android update project : 更细项目
  • android create test-project : 创建測试项目
  • android update test-project : 更新測试项目
  • android create lib-project : 创建库项目
  • android update lib-project : 更新库项目
  • android create uitest-project: 创建UI測试项目
  • android update adb : 更新ADB以支持在SDK add-ons定义的USB设

举例

创建Android工程

注意:把SDK_HOME/tools和SDK_HOME/platfrom-tools加入到系统Path里,方便开发。下面两个工具在tools文件夹下。

执行命令:

  1. android create project --target <target-id> --name MyApp \
  2. --path <path-to-workspace>/MyApp --activity MyActivity \
  3. --package com.allenwells.myapp
  • 1
  • 2
  • 3

替换 ,替换 为你想要保存项目的路径。例如以下所看到的:

android create project --target android-22 --name MyApp --path D:\workplace_studio\MyApp --activity MyActivity --package com.allenwells.myapp
  • 1

命令行显示工程创建流程,例如以下图所看到的:

这里写图片描写叙述

创建后的项目工程文件夹结构例如以下图所看到的:

这里写图片描写叙述

5.2 资源打包

Android的资源打包工具是aapt。

经常使用语法格式例如以下所看到的:

aapt -A <附件资源路径> -S <资源路径> -M <Android应用清单文件> -I <额外附加的包> -F <目标文件路径>
  • 1
  • aapt l[ist] [-v] [-a] file.{zip,jar,apk}

列出资源压缩包里的内容。

  • aapt d[ump] [–values] WHAT file.{apk} [asset [asset …]]

查看APK里的内容

  1. badging Print the label and icon for the app declared in APK.
  2. permissions Print the permissions from the APK.
  3. resources Print the resource table from the APK.
  4. configurations Print the configurations in the APK.
  5. xmltree Print the compiled xmls in the given assets.
  6. xmlstrings Print the strings of the given compiled xml assets.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • aapt p[ackage] [-d][-f][-m][-u][-v][-x][-z][-M AndroidManifest.xml] \
    [-0 extension [-0 extension …]] [-g tolerance] [-j jarfile] \
    [–debug-mode] [–min-sdk-version VAL] [–target-sdk-version VAL] \
    [–app-version VAL] [–app-version-name TEXT] [–custom-package VAL] \
    [–rename-manifest-package PACKAGE] \
    [–rename-instrumentation-target-package PACKAGE] \
    [–utf16] [–auto-add-overlay] \
    [–max-res-version VAL] \
    [-I base-package [-I base-package …]] \
    [-A asset-source-dir] [-G class-list-file] [-P public-definitions-file]\
    [-S resource-sources [-S resource-sources …]] \
    [-F apk-file] [-J R-file-dir] \
    [–product product1,product2,…] \
    [-c CONFIGS] [–preferred-configurations CONFIGS] \
    [raw-files-dir [raw-files-dir] …] \
    [–output-text-symbols DIR]

打包生成资源压缩包

  • aapt r[emove] [-v] file.{zip,jar,apk} file1 [file2 …]

从压缩包中删除指定文件。

  • aapt a[dd] [-v] file.{zip,jar,apk} file1 [file2 …]

向压缩包加入指定文件。

  • aapt c[runch] [-v] -S resource-sources … -C output-folder …

处理PNG资源并把处理结果保存到外部文件夹中。

  • aapt v[ersion]

打印aapt版本号。

具体选项參见:

  1. Modifiers:
  2. -a print Android-specific data (resources, manifest) when listing
  3. -c specify which configurations to include. The default is all
  4. configurations. The value of the parameter should be a comma
  5. separated list of configuration values. Locales should be specified
  6. as either a language or language-region pair. Some examples:
  7. en
  8. port,en
  9. port,land,en_US
  10. If you put the special locale, zz_ZZ on the list, it will perform
  11. pseudolocalization on the default locale, modifying all of the
  12. strings so you can look for strings that missed the
  13. internationalization process. For example:
  14. port,land,zz_ZZ
  15. -d one or more device assets to include, separated by commas
  16. -f force overwrite of existing files
  17. -g specify a pixel tolerance to force images to grayscale, default 0
  18. -j specify a jar or zip file containing classes to include
  19. -k junk path of file(s) added
  20. -m make package directories under location specified by -J
  21. -u update existing packages (add new, replace older, remove deleted files)
  22. -v verbose output
  23. -x create extending (non-application) resource IDs
  24. -z require localization of resource attributes marked with
  25. localization="suggested"
  26. -A additional directory in which to find raw asset files
  27. -G A file to output proguard options into.
  28. -F specify the apk file to output
  29. -I add an existing package to base include set
  30. -J specify where to output R.java resource constant definitions
  31. -M specify full path to AndroidManifest.xml to include in zip
  32. -P specify where to output public resource definitions
  33. -S directory in which to find resources. Multiple directories will be scann
  34. ed
  35. and the first match found (left to right) will take precedence.
  36. -0 specifies an additional extension for which such files will not
  37. be stored compressed in the .apk. An empty string means to not
  38. compress any files at all.
  39. --debug-mode
  40. inserts android:debuggable="true" in to the application node of the
  41. manifest, making the application debuggable even on production devices.
  42. --min-sdk-version
  43. inserts android:minSdkVersion in to manifest. If the version is 7 or
  44. higher, the default encoding for resources will be in UTF-8.
  45. --target-sdk-version
  46. inserts android:targetSdkVersion in to manifest.
  47. --max-res-version
  48. ignores versioned resource directories above the given value.
  49. --values
  50. when used with "dump resources" also includes resource values.
  51. --version-code
  52. inserts android:versionCode in to manifest.
  53. --version-name
  54. inserts android:versionName in to manifest.
  55. --custom-package
  56. generates R.java into a different package.
  57. --extra-packages
  58. generate R.java for libraries. Separate libraries with ':'.
  59. --generate-dependencies
  60. generate dependency files in the same directories for R.java and resource
  61. package
  62. --auto-add-overlay
  63. Automatically add resources that are only in overlays.
  64. --preferred-configurations
  65. Like the -c option for filtering out unneeded configurations, but
  66. only expresses a preference. If there is no resource available with
  67. the preferred configuration then it will not be stripped.
  68. --rename-manifest-package
  69. Rewrite the manifest so that its package name is the package name
  70. given here. Relative class names (for example .Foo) will be
  71. changed to absolute names with the old package so that the code
  72. does not need to change.
  73. --rename-instrumentation-target-package
  74. Rewrite the manifest so that all of its instrumentation
  75. components target the given package. Useful when used in
  76. conjunction with --rename-manifest-package to fix tests against
  77. a package that has been renamed.
  78. --product
  79. Specifies which variant to choose for strings that have
  80. product variants
  81. --utf16
  82. changes default encoding for resources to UTF-16. Only useful when API
  83. level is set to 7 or higher where the default encoding is UTF-8.
  84. --non-constant-id
  85. Make the resources ID non constant. This is required to make an R java cl
  86. ass
  87. that does not contain the final value but is used to make reusable compil
  88. ed
  89. libraries that need to access resources.
  90. --error-on-failed-insert
  91. Forces aapt to return an error if it fails to insert values into the mani
  92. fest
  93. with --debug-mode, --min-sdk-version, --target-sdk-version --version-code
  94. and --version-name.
  95. Insertion typically fails if the manifest already defines the attribute.
  96. --output-text-symbols
  97. Generates a text file containing the resource symbols of the R class in t
  98. he
  99. specified folder.
  100. --ignore-assets
  101. Assets to be ignored. Default pattern is:
  102. !.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104

举例

将当前文件夹下assets子文件夹、res子文件夹、AndroidManifest.xml文件都打包到bin\resapk资源包中

aapt -A assets -S res -M AndroidManifest.xml -I D:\my.jar -F bin/resapk
  • 1

5.3 项目编译

Android虚拟机并不直接执行Java的.class文件,它通过DX工具打包.class文件后执行。

DX工具用于将Android应用的.class文件转换为.dex文件。

dx命令格式例如以下所看到的:

dx --dex [--dump-to=<file>] [--core-library] [<file>.class | <file>.{zip,jar,apk} | <directory>}
  • 1

举例

将D:\myproject\bin文件夹下的所有二进制文件转换为D:\文件夹下的my.dex文件。

dex -dex --dump-to=D:\my.dex --core-library D:\myproject\bin
  • 1

5.4 应用签名

Android应用的签名工具是jarsigner。签名之前我们须要创建一个keystore库。

5.4.1 生成keystore库

keytool是密钥和证书管理工具。

keytool命令选项例如以下所看到的:

  • -alias: 生成证书的别名
  • -keyalg: 生成证书的算法
  • -validity: 生成证书的有效期
  • -keystore: 生成证书的具体路径
  • -certreq: 生成证书请求
  • -changealias: 更改条目的别名
  • -delete: 删除条目
  • -exportcert: 导出证书
  • -genkeypair: 生成密钥对
  • -genseckey: 生成密钥
  • -gencert: 依据证书请求生成证书
  • -importcert: 导入证书或证书链
  • -importpass: 导入口令
  • -importkeystore: 从其它密钥库导入一个或所有条目
  • -keypasswd: 更改条目的密钥口令
  • -list: 列出密钥库中的条目
  • -printcert: 打印证书内容
  • -printcertreq: 打印证书请求的内容
  • -printcrl: 打印 CRL 文件的内容
  • -storepasswd: 更改密钥库的存储口令

举例

创建一个名为my.keystore的keystore库

keytool -genkeypair -alias my.keystore -keyalg RSA -validity 400 -keystore my.keystore
  • 1

命令执行后会提示我们填写一系列的东西,例如以下图所看到的:

这里写图片描写叙述

填写完毕后。能够发如今当前文件夹下生成了my.keystore文件,例如以下图所看到的:

这里写图片描写叙述

5.4.2 用keystore库给应用签名

jarsigner:应用签名工具

jarsigner命令使用方法例如以下所看到的:

  1. jarsigner [选项] jar-file 别名
  2. jarsigner -verify [选项] jar-file [别名...]
  • 1
  • 2

jarsigner命令相关选项例如以下所看到的:

  • [-keystore ]: 密钥库位置
  • [-storepass <口令>]: 用于密钥库完整性的口令
  • [-storetype <类型>]: 密钥库类型
  • [-keypass <口令>]: 私有密钥的口令 (假设不同)
  • [-certchain <文件>]: 替代证书链文件的名称
  • [-sigfile <文件>]: .SF/.DSA 文件的名称
  • [-signedjar <文件>]: 已签名的 JAR 文件的名称
  • [-digestalg <算法>]: 摘要算法的名称
  • [-sigalg <算法>]: 签名算法的名称
  • [-verify]: 验证已签名的 JAR 文件
  • [-verbose[:suboptions]]: 签名/验证时输出具体信息。

    选项能够是 all, grouped 或 summary

  • [-certs]: 输出具体信息和验证时显示证书
  • [-tsa ]: 时间戳颁发机构的位置
  • [-tsacert <别名>]: 时间戳颁发机构的公共密钥证书
  • [-tsapolicyid ]: 时间戳颁发机构的 TSAPolicyID
  • [-altsigner <类>]: 替代的签名机制的类名
  • [-altsignerpath <路径列表>]: 替代的签名机制的位置
  • [-internalsf]: 在签名块内包括 .SF 文件
  • [-sectionsonly]: 不计算整个清单的散列
  • [-protected]: 密钥库具有受保护验证路径
  • [-providerName <名称>]: 提供方名称
  • [-providerClass <类>: 加密服务提供方的名称
  • [-providerArg <參数>]]… 主类文件和构造器參数
  • [-strict]: 将警告视为错误

举例

用my.keystore给my.apk签名

jarsigner -verbose -keystore my.keystore -signedjar my_signed.apk  my.apk my.keystore
  • 1
  • -verbose:执定生成具体输出
  • -keystore:指定生成数字证书的存储路径
  • -signedjar:该选项后的三个參数分别为:签名后的APK、未签名的APK和数字证书的别名。

签名流程例如以下图所看到的:

这里写图片描写叙述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/242914
推荐阅读
相关标签
  

闽ICP备14008679号