From cfd014d38cba03ba05f571597b361ab253bff578 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Sat, 25 Apr 2015 17:03:02 -0700 Subject: Update to gradle --- app/build.gradle | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 app/build.gradle (limited to 'app/build.gradle') diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 00000000..cb3119bd --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,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' +} -- cgit v1.2.3