错误描述如下:$ adb install ./app/build/outputs/apk/app-debug.apk
2999 KB/s (8256380 bytes in 2.688s)
pkg: /data/local/tmp/app-debug.apk
Failure [INSTALL_FAILED_OLDER_SDK]原因就是您设备的Android版本过低,app不支持。...
分类:
移动开发 时间:
2015-06-15 18:45:47
阅读次数:
227
安装过程中,由于网络终端,导致下面问题:问题1:安装停止在获取安装锁/tmp/scm_prepare_node.tYlmPfrTusing SSH_CLIENT to get the SCM hostname: 172.16.77.20 33950 22opening logging file de...
分类:
其他好文 时间:
2015-06-15 18:23:42
阅读次数:
344
以下内容是本人接触linux工作后,每次安装后服务器必做的一些操作,如有不对之处欢迎大神指出,感谢。安装系统分区(1)/boot分区给100M;(2)swap分区大小为内存的2倍,最大16G足矣;(3)/usr分区50G;(4)/分区100G;(5)/data分区200G;(6)/tmp分区100G设定服务器公网IP等信息yumupdat..
分类:
系统相关 时间:
2015-06-15 16:49:56
阅读次数:
136
$arr[$k+1]) { $tmp=$arr[$k+1]; $arr[$k+1]=$arr[$k]; $arr[$k]=$tmp; } ...
分类:
编程语言 时间:
2015-06-15 10:58:31
阅读次数:
135
安装vmware-tools 实现linux与win7之间的文件共享。tar xvf VMwareTools*.tar.gz –C /tmpcd /tmp/vmware-tools-distrib ##有必要给该目录加执行权限 chmod –R +x *./vmware-install.pl 一路y...
App 中常用的目录有5个,分别是:(1)根目录(2)Documents(3)Library/Caches(4)Library/Preferences(5)tmp如何获取目录呢?1、App根目录:1 NSString *homeDir = NSHomeDirectory();2、Documents所...
分类:
移动开发 时间:
2015-06-14 21:11:24
阅读次数:
145
代码: 1 import numpy as np 2 import csv 3 import math as mt 4 5 def hypo(tt,xx): #hypothesis函数 6 exp=mt.e 7 tmp=0.0 8 for i in range...
分类:
其他好文 时间:
2015-06-14 18:11:23
阅读次数:
141
1.数据导出 shell下: mysqldump ds t1 -T /tmp [ --fields-terminated-by "," --fields-optionally-enclosed-by '"' ] -- 字符型数据加”引起,默认以tab键隔开,且没加引号 --default-chara...
分类:
其他好文 时间:
2015-06-14 10:48:59
阅读次数:
171
查询时加序号 a:没有主键的情形:Select identity(int,1,1) as iid,* into #tmp from TableName Select * from #tmp Drop table #tmp b:有主键的情形:Select (Select ...
分类:
数据库 时间:
2015-06-13 21:35:44
阅读次数:
209
线程互斥:实质某一资源同时只允许一个访问者对其进行访问,具有唯一性和排他性。 import threading import time g_lock = threading.Lock() def func(): global tmp global g_lock g_lock.acquire() fo...
分类:
编程语言 时间:
2015-06-13 15:34:19
阅读次数:
124