Last active
August 29, 2015 14:01
-
-
Save kyokomi/b6744406cee90198d423 to your computer and use it in GitHub Desktop.
Cocos2d-x3.1でAndroidをGradleビルドするためにプロジェクト直下に配置するもの
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:0.10.+' | |
} | |
} | |
subprojects { | |
repositories { | |
mavenCentral() | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include ':proj.android',':cocos2d:cocos:platform:android:java' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment