-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
81 lines (67 loc) · 1.81 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.google.gms:google-services:3.1.0'
classpath 'com.android.tools.build:gradle:2.2.0'
}
}
apply plugin: 'com.android.application'
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
android {
compileSdkVersion 23
buildToolsVersion "24.0.2"
defaultConfig {
applicationId 'com.aegroto.climberball'
minSdkVersion 15
targetSdkVersion 23
versionCode 8
versionName "b8"
}
lintOptions {
abortOnError false
}
//Uncomment to sign release APK
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
//Uncomment to sign release APK
signingConfig signingConfigs.release
}
}
}
def jmeversion='3.1-github-tag-test'
dependencies {
compile (project(":game")) {
exclude module: "jme3-lwjgl"
exclude module: "jme3-desktop"
}
compile 'com.github.jMonkeyEngine.jmonkeyengine:jme3-android:'+jmeversion
compile 'com.github.jMonkeyEngine.jmonkeyengine:jme3-android-native:'+jmeversion
compile 'com.google.firebase:firebase-ads:10.2.6'
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
}
task copyAssets {
delete 'src/main/assets'
copy {
from 'game/src/main/resources/_assets'
into 'src/main/assets'
}
}
clean.dependsOn copyAssets