Skip to content

Instantly share code, notes, and snippets.

View darkdukey's full-sized avatar

Nite Luo darkdukey

View GitHub Profile
@darkdukey
darkdukey / strip.conf
Created January 21, 2016 06:15 — forked from dextorer/strip.conf
google-play-services-strip-script
actions=true
ads=true
analytics=true
appindexing=true
appstate=true
auth=true
cast=true
common=true
drive=false
dynamic=true
@darkdukey
darkdukey / nsarray.mm
Last active August 29, 2015 14:17 — forked from jeremy-w/nsarray.mm
//clang++ -std=c++11 -stdlib=libc++ -framework Foundation nsarray.mm -o nsarray
/* Note:
* - libstdc++ has been frozen by Apple at a pre-C++11 version, so you must opt
for the newer, BSD-licensed libc++
* - Apple clang 4.0 (based on LLVM 3.1svn) does not default to C++11 yet, so
you must explicitly specify this language standard. */
/* @file nsarray.mm
* @author Jeremy W. Sherman
*
* Demonstrates three different approaches to converting a std::vector
@darkdukey
darkdukey / Design.md
Last active August 29, 2015 14:10
Cocos PackageManager

Package Manager

Package Manager provides a way for developers to easily extend cocos2d-x with plugins

Core Features:

  • Modularize coocs2d-x enable developers to customize the engine for their own game
  • Developers can search, manage and install plugins
  • Update project for the developers when install, remove or update the plugin
  • Developers can share their plugin with others