-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
43 lines (38 loc) · 993 Bytes
/
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
}
}
allprojects {
repositories {
jcenter()
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 16
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.dhbikoff.breakout"
minSdkVersion 13
targetSdkVersion 15
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_5
targetCompatibility JavaVersion.VERSION_1_5
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:18.0.0'
//compile fileTree(dir: 'libs', include: ['*.jar'])
//compile project(":AndEngineMultiplayerExtension-GLES2")
}