You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1015 B
40 lines
1015 B
10 years ago
|
dependencies {
|
||
|
compile project(':jme3-core')
|
||
|
compile project(':jme3-android')
|
||
|
compile project(':jme3-effects')
|
||
|
compile project(':jme3-bullet')
|
||
|
compile project(':jme3-bullet-native')
|
||
|
compile project(':jme3-networking')
|
||
|
compile project(':jme3-niftygui')
|
||
|
compile project(':jme3-plugins')
|
||
|
compile project(':jme3-terrain')
|
||
|
compile project(':jme3-testdata')
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 10
|
||
|
buildToolsVersion "22.0.1"
|
||
|
|
||
|
lintOptions {
|
||
|
// Fix nifty gui referencing "java.awt" package.
|
||
|
disable 'InvalidPackage'
|
||
|
}
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "com.jme3.android"
|
||
|
minSdkVersion 10 // Android 2.3 GINGERBREAD
|
||
|
targetSdkVersion 22 // Android 5.1 LOLLIPOP
|
||
|
versionCode 1
|
||
|
versionName "1.0" // TODO: from settings.gradle
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
}
|
||
|
debug {
|
||
|
applicationIdSuffix ".debug"
|
||
|
debuggable true
|
||
|
}
|
||
|
}
|
||
|
}
|