aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
blob: cb3119bd1c8680954353d14c2f5a47eab7ef04ad (plain)
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
apply plugin: 'com.android.application'

android {
	compileSdkVersion 22
	buildToolsVersion "22.0.0"

	defaultConfig {
		applicationId "github.daneren2005.dsub"
		minSdkVersion 9
		targetSdkVersion 22
	}
	buildTypes {
		release {
			minifyEnabled false
			proguardFiles getDefaultProguardFile('proguard.cfg')
		}
	}

	packagingOptions {
		exclude 'META-INF/beans.xml'
	}
}

dependencies {
	compile project(':DragSort ListView')
	compile project(':Server Proxy')
	compile fileTree(include: ['*.jar'], dir: 'libs')
	compile 'com.android.support:support-v4:22.1.1'
	compile 'com.android.support:appcompat-v7:22.1.1'
	compile 'com.android.support:mediarouter-v7:22.1.1'
	compile 'com.google.android.gms:play-services-cast:7.0.0'
}