eclipse 原版是自带Ant的 ADT需要自己安装解决方法--->https://code.google.com/p/android/issues/detail?id=734271. Help -> Install New SoftWare2. Work With -> "http://down...
分类:
其他好文 时间:
2015-02-06 11:13:19
阅读次数:
155
最近在做一个测试工具,运行工具的时候出现如下报错:
Class resolved by unexpected DEX: ...(0x425a19b8):0x68543000 ref [...] ...):0x68340000这是因为我们的包引用了俩份相同的包所致的。
ant 工具在编译的时候,会将libs目录下的所有包都编译,而这时我们工程若引用这个包,而在另外的被测试程序中也用到这个包的话...
分类:
移动开发 时间:
2015-02-05 20:28:04
阅读次数:
179
题目地址:HDU 3018
求每个点的度数,对于每个连通分支统计度数为奇数的个数,然后需要的次数就是个数/2。注意对于孤立的点不能算。
代码如下:
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define LL l...
分类:
其他好文 时间:
2015-02-05 18:33:00
阅读次数:
151
http://acm.hdu.edu.cn/showproblem.php?pid=4340
Problem Description
Ant and Bob two army want to capture a country. The country is consist of N cities. To capture the city i, it takes Ant A...
分类:
其他好文 时间:
2015-02-05 18:31:47
阅读次数:
140
antbuildfile用于java自动运行脚本类似于linux的bash和windowsdosscript.常用于自动deploywarearfiletoserver.ant是基于xmlfile通过tag命令执行一个build.xml至少包含projectandtargettagantbuildfileatleasthasone<project><target><project>requireattribu..
分类:
其他好文 时间:
2015-02-05 07:08:50
阅读次数:
140
macrodef直接解释是宏,理解上可以是自定义标签或者自定义函数对于大型部署提高代码利用率为了方便理解通过以下代码:<macrodefname="macro-send-file">
<attributename="host"/>
<attributename="toPath"/>
<attributename="file"/>
<attri..
分类:
系统相关 时间:
2015-02-05 07:08:20
阅读次数:
251
Eclipse用起来虽然方便,但是编译打包android项目还是比较慢,尤其将应用打包发布到各个渠道时,用Eclipse手动打包各种渠道包就有点不切实际了,这时候我们用到Ant帮我们自动编译打包了。
1 Ant自动编译打包android项目
1.1 Ant安装
ant的安装比较简单,下载ant压缩包 http://ant.apache.org 有时...
分类:
移动开发 时间:
2015-02-04 16:34:43
阅读次数:
287
一、启动Kali的PostgreSQL服务由于使用PostgreSQL作为数据库,因此,必须先运行它。root@kali:~# service postgresql start使用ss -ant的输出来检验PostgreSQL是否在运行,然后确认5432端口处于listening状态。二、启动Met...
分类:
Web程序 时间:
2015-02-04 12:34:05
阅读次数:
171
今天就开始学习Gradle构建了,听说很牛X。本篇内容就带领我初步窥探Gradle的世界。 1.什么是Gradle 相信之前都接触过用Ant或者Meavn进行项目的构建,两者各有千秋,Ant的灵活性,以及Meavn的强大依耐性都让它们在构建的世界里占据了一席之地。然而Ant的复杂配置以及Meav.....
分类:
其他好文 时间:
2015-02-03 19:18:05
阅读次数:
359
补充,自行安装Ant, 配置ant环境变量, 在android 项目 根目录下使用 android update project可以自动生成 build.xml 和 local.peoperties 文件//----------------------------------------------...
分类:
移动开发 时间:
2015-02-03 16:53:50
阅读次数:
229