摘要:
最近尝试了一下Android的Gradle打包,发现确实比Ant打包会方便很多,特此记录下来。注:android的gradle现在插件的版本已经是0.14.3了,对于一些老的方法和api,有一些已经被移除,无法使用(http://tools.android.com/tech-docs/new-bui... 阅读全文
随笔档案-2015年01月
[原]Android打包之跨平台打包
2015-01-22 15:49 by 雪夜&流星, 425 阅读, 收藏, 编辑
摘要:
Android自动打包流程详细图:在前面一些博客我们知道了如何通过命令行打包,如何通过Eclipse打包,如何通过编写shell脚本来进行打包,但是这些都不能很好的跨平台进行打包。因Python本身具有很好的跨平台特性,故本博就是通过使用Python来进行编写跨平台打包脚本,脚本如下(build.p... 阅读全文
bash shell脚本之获取时间日期
2015-01-22 15:15 by 雪夜&流星, 1495 阅读, 收藏, 编辑
摘要:
shell中的时间日期获取cat test5:#!/bin/bash# using the backtick charactertesting=`date`echo "The date and time are:" $testingdate=`date +%Y-%m-%d_%H-%M-%S` ech... 阅读全文
LeetCode刷题之Median of Two Sorted Arrays
2015-01-08 11:37 by 雪夜&流星, 245 阅读, 收藏, 编辑
摘要:
problem:There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity sh... 阅读全文
LeetCode刷题之Two Sum
2015-01-06 17:17 by 雪夜&流星, 156 阅读, 收藏, 编辑
摘要:
Problem:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of th... 阅读全文