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
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 0 additions & 8 deletions .classpath

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ doc/**
gen/**
gdb.setup
gdbserver
build
*.iml
.gradle
.idea

# Eclipse:
.settings
Expand Down
33 changes: 0 additions & 33 deletions .project

This file was deleted.

27 changes: 27 additions & 0 deletions andengine/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
apply plugin: 'android-library'
apply plugin: 'android-maven'

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

android {
compileSdkVersion 19
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
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
android:versionCode="1"
android:versionName="1.0">

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19"/>

<application android:debuggable="true"/>
<application />
</manifest>
Loading