非阻塞Connect对于select时应注意问题http://www.cnitblog.com/zouzheng/archive/2010/11/25/71711.html
http://tieba.baidu.com/p/3873931968?pn=2
---------------------------
https://github.com/cocos2d/cocos2d-x/pull/7520/files
building apk
Android platform not specified, searching a default one...
Can't find right android-platform for project : "E:\cocos2d\cocos2d-x-3.1.1\test
s\cpp-tests\proj.android". The android-platform should be equal/larger than 20
cocos run -p android --ap 20
===============分辩率适配========
CCSize frameSize = glview->getFrameSize();
CCSize DesignSize = CCSize(1136,640);
float widthRate = frameSize.width/DesignSize.width;
float heightRate = frameSize.height/DesignSize.height;
if (widthRate > heightRate)
{
glview->setDesignResolutionSize(DesignSize.width,
DesignSize.height*heightRate/widthRate, kResolutionNoBorder);
}
else
{
glview->setDesignResolutionSize(DesignSize.width*widthRate/heightRate, DesignSize.height,
kResolutionNoBorder);
}
=============上传图片不了======================
android.os.NetworkOnMainThreadException
<uses-sdk
android:minSdkVersion="3"
android:targetSdkVersion="8" />
====================================
error: obj/local/armeabi/objs/cpufeatures/cpu-features.o
log: delete obj/local/armeabi/objs/cpufeatures/*.*
================================================
cocostudio
http://www.cocoachina.com/bbs/read.php?tid=195955
http://www.cocoachina.com/bbs/read.php?tid=220090
GRANT ALL PRIVILEGES ON *.* TO 'root'@'10.241.214.216' IDENTIFIED BY '';
Cocos2d-x 3.3卡牌设计02:卡牌翻转
http://cn.cocos2d-x.org/tutorial/show?id=2889