Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate from eclipse+ant to gradle #250

Open
wants to merge 3 commits into
base: GLES2
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add the ability to publish to maven
stefanrusek committed Feb 17, 2014
commit e2fea990c363bf294a7745d5a1b2611ccc4dcb6f
14 changes: 12 additions & 2 deletions andengine/build.gradle
Original file line number Diff line number Diff line change
@@ -1,21 +1,31 @@
apply plugin: 'android-library'
apply plugin: 'android-maven'

group = "org.andengine"
version = "1.0"

android {
compileSdkVersion 19
buildToolsVersion "19.0.1"
buildToolsVersion '19.0.1'

defaultConfig {
minSdkVersion 8
targetSdkVersion 19

versionCode 1
versionName version

ndk {
moduleName "andengine_shared"
ldLibs "GLESv2"
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}

artifacts {
archives file('build/libs/andengine.aar')
}
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:0.8.+'
classpath 'com.github.dcendents:android-maven-plugin:1.0'
}
}