- 浏览: 114746 次
- 性别:
- 来自: 武汉
文章分类
- 全部博客 (98)
- java (27)
- jms (2)
- jta (0)
- 性能调优及内存分析 (4)
- 设计模式 (14)
- 框架 (6)
- 其它 (9)
- job (1)
- maven (1)
- 服务器 (2)
- 分布式 (3)
- ibatis (1)
- linux (0)
- mysql (0)
- 并发编程 (0)
- java多线程 (2)
- 前端跨域 (1)
- 线程dump分析 (0)
- velocity (0)
- 数据库 (2)
- 协议 (0)
- 监控 (0)
- 开源软件 (2)
- 算法 (0)
- 网络 (1)
- spring (1)
- 编码 (0)
- 数据结构 (0)
- HTable和HTablePool使用注意事项 (0)
- opencms (0)
- android (16)
- 操作系统 (2)
- top (0)
最新评论
-
hold_on:
@Override public boolea ...
android listview的HeadView左右切换图片(仿新浪,网易,百度等切换图片) -
achersnake:
123
Servlet中listener(监听器)和filter的总结 -
angel243fly:
我用了这个方法,还是报同样的错误,还有什么建议吗?
eclipse提示CreateProcess error=87错误的解决方法
http://www.cnblogs.com/santry/archive/2011/10/25/2223524.html
可用的Goals
android:apk | 创建apk文件。默认使用debug密钥对Apk签名。 如需修改可以修改配置参数为<sign><debug>false</debug></sign> |
android:apklib | 创建apklib文件。apklib文件并不会被部署。 |
android:deploy | 部署编译好或指定的apk文件到一个连接的设备上。在运行mvn integration-test(或mvn install)命令会自动执行。 |
android:deploy-dependencies | Deploys all directly declared dependencies of <type>apk</type> in this project's pom.Usually used in a project with instrumentation tests, to deploy the apk to test onto the device before running the deploying and running the instrumentation tests apk.Automatically performed when running mvn integration-test (or mvn install) on a project with instrumentation tests. |
android:dex | 将编译好的Java classes转换为Android dex格式。 |
android:emulator-start | 启动指定的Android模拟器。 |
android:emulator-stop | 停止指定的Android模拟器. |
android:generate-sources | Generates R.java based on resources specified by the resources configuration parameter.Generates java files based on aidl files. If the configuration parameter deleteConflictingFiles is true (which it is by default), this goal has the following side-effects: deletes any R.java files found in the source directory. deletes any .java files with the same name as an .aidl file found in the source directory. deletes any Thumbs.db files found in the resource directory. |
android:instrument | 在设备运行apk程序. |
android:internal-integration-test | 内部命令,不要直接使用。生命周期到达integration-test步骤时会自动调用。 |
android:ndk-build | 未知 |
android:pull | 从设备上复制文件/文件夹。 |
android:push | 拷贝文件/文件夹到设备上。 |
android:redeploy | 在连接的设备上重新部署编译或指定的apk文件。 |
android:undeploy | 从连接的设备上卸载生成或指定的apk文件。 |
android:unpack | 解包库。 |
android:version-update | 更新AndroidManifest.xml文件中版本信息相关内容。可以使android:versionName属性值和工程的版本信息保持一致。也可以配置使android:versionCode自动增长。 注意:该操作可能会重新格式化AndroidManifest.xml文件内容。 配置自动更新android:versionName: <plugin> <groupId> com.jayway.maven.plugins.android.generation2</groupId> <artifactId> maven-android-plugin</artifactId> <executions> <execution> <id> update-version</id> <goals> <goal> version-update</goal> </goals> <configuration> <versionNameUpdate> true</versionNameUpdate> </configuration> </execution> </executions> </plugin> 配置android:versionCode自动增长: <plugin> <groupId> com.jayway.maven.plugins.android.generation2</groupId> <artifactId> maven-android-plugin</artifactId> <executions> <execution> <id> update-version</id> <goals> <goal> version-update</goal> </goals> <configuration> <versionCodeAutoIncrement> true</versionCodeAutoIncrement> </configuration> </execution> </executions> </plugin> |
android:zipalign | ZipalignMojo can run the zipalign command against the apk. |
发表评论
-
android listview的HeadView左右切换图片(仿新浪,网易,百度等切换图片)
2013-01-15 20:02 2910http://blog.csdn.net/jj120522 ... -
解决Android模拟器无法用PC键盘输入与模拟器外部功能添加.
2013-01-06 16:20 1490公司发了PC后重新装了Android开发环境. 但是在模拟器上 ... -
Android Fragment使用
2012-12-20 17:29 906你可以像为View一样, 为fragment指定lay ... -
Android异步处理四:AsyncTask的实现原理
2012-12-14 09:08 1035在《Android异步处理二:使用AsyncTask异步 ... -
Android异步处理三:Handler+Looper+MessageQueue深入详解
2012-12-14 09:06 1021在《Android异步处理一:使用Thread+Hand ... -
Android异步处理二:使用AsyncTask异步更新UI界面
2012-12-14 09:00 1076在《Android异步处理一:使用Thread+Hand ... -
Android异步处理一:使用Thread+Handler实现非UI线程更新UI界面
2012-12-14 08:48 1044概述:每个Android应用程序都运行在一个dalvik ... -
Android 中LayoutInflater的使用
2012-12-11 20:11 0大家好我们这一节讲的是LayoutInflater的使用,在实 ... -
邵洋江 android之tabhost讲解
2012-12-11 19:15 0Tab标签页是界面设计时经常使用的界面控件,可以实现多个分页之 ... -
android Bitmap用法总结
2012-12-10 13:09 0android Bitmap用法总结 http://ww ... -
Parcelable接口应用
2012-11-30 19:53 0Android中Intent传递对象有两个方法,一个是让 ... -
常用的android弹出对话框
2012-11-09 08:47 0http://blog.csdn.net/chenlei ... -
Android实现推送方式解决方案
2012-11-07 13:44 0转:http://www.cnblogs.com/han ... -
Android 之 下拉框(Spinner)的使用
2012-11-06 15:16 0下拉列表 Spinner。 Spinner的使用,可以极 ... -
android ListView添加事件并获取选中项的值
2012-11-05 11:45 0转:http://www.beijibear.com/?aid ... -
Android 用TextView做菜单的多个onClick事件的处理
2012-11-02 19:23 0TextView控件使用OnClick事件监听的时候,会遇到一 ... -
在ListView中显示网络图片
2012-11-02 08:30 1153最近在做一个天气预报的例子,想在ListView中添加网 ... -
android ListView详解
2012-11-01 09:43 0在android开发中ListView是比较常用的组件, ... -
Android用Application设置全局变量以及使用
2012-10-21 14:08 976如果想在整个应用中使用全局变量,在java中一般是使用静态 ... -
TabSpec和TabHost实例
2012-10-15 08:44 1603TabSpec与TabHost TabHost相当于 ...
相关推荐
classpath 'com.github.dcendents:android-maven-gradle-plugin:版本号' } } ``` 2. 应用插件并配置相关属性: ```groovy apply plugin: 'com.android.library' apply plugin: '...
<artifactId>android-maven-plugin <version>4.3.0 <!-- 这里添加你的配置 --> <extensions>true </plugin> ``` 2. 配置Android SDK路径、版本等信息: ```xml <platform>29 ... ``` **二、...
"android-maven-plugin"是专门为Android应用开发定制的一款Maven插件,它允许开发者利用Maven的强大功能来管理Android项目的构建流程,极大地提高了开发效率。 该插件的主要功能包括: 1. **自动依赖管理**:通过...
maven git commit id plugin git-commit-id-plugin is a plugin quite similar to ...
`gradle-maven-plugin`就填补了这个空缺,使得Gradle构建的Android库(如AAR)可以被Maven仓库接收,方便其他Maven或Gradle项目引用。 **插件的使用步骤** 1. **添加依赖**:首先,在你的Gradle项目的`build....
官方版本,亲测可用
在`proguard-maven-plugin-master`这个压缩包中,包含了项目源码和相关资源,可供开发者深入研究和自定义插件的行为。开发工作通常在GitHub这样的版本控制系统上进行,方便社区贡献和维护。由于这个插件已经处于成熟...
### Maven-javadoc-plugin 中文注释 API 解决乱码及时间问题详解 #### 一、背景介绍 在软件开发过程中,API文档对于提高代码可读性、方便团队成员之间的交流至关重要。Maven作为一款强大的自动化构建工具,在项目...
官方版本,亲测可用
【maven】说明:Gradle maven工件发布与maven、maven发布、android maven Gradle插件的演练。该项目包含..., (Gradle maven artifacts publishing walkaround with maven , maven-publish , android-maven gradle ...
官方版本,亲测可用
Gradle插件,创建一个UploadArchives任务,自动将所有Java、Kotlin或Android库上载到任何Maven实例。这个插件基于chris-banes的初始实现,并且已经被增强以添加kotlin支持并跟上最新的更改。
官方版本,亲测可用
buildnumber-maven-git插件这是原始buildnumber-maven-plugin的副本,该副本生成${buildNumber}作为整数(提交计数),而不是GIT的哈希值。 这对于Android开发非常有用,其中versionCode必须始终为数字。 如果要使用...
官方版本,亲测可用
maven-android-plugin-samples, Android Maven 插件不推荐使用的示例 ! Android Maven 插件--示例项目警告这里项目的为 。 在版本 4.0.0 -rc.1的Android Maven 插件的所有示例项目都是实际插件代码库的一部分,并...
【标题】"play2-maven-plugin-1.0.0-alpha9.zip" 是一个与Play框架相关的Maven插件的版本包,它主要用于构建和管理基于Play 2.x的Java或Scala应用程序。Play框架是一个开源的Web应用框架,遵循模型-视图-控制器(MVC...
"obfuscation-maven-plugin"是一个专门用于进行代码混淆的Maven插件,它整合了qprotect工具,为Java开发者提供了方便的混淆编译解决方案。 **Maven插件的作用** Maven是Java项目管理的神器,它通过配置文件pom.xml...
标题 "maven3-plugin" 指涉的是 Maven 3 的 Eclipse 插件,这个插件是为了在 Eclipse 开发环境中集成 Maven 构建工具。Maven 是一个广泛使用的项目管理和综合工具,它可以帮助Java开发者管理项目的依赖、构建、文档...