From 5d2f7b4c8f76a1fb7cb8d3d0ad9ca7e6fcc6274a Mon Sep 17 00:00:00 2001 From: Victor Häggqvist Date: Thu, 1 Jan 2015 16:28:17 +0100 Subject: init --- aboutit-sample/build.gradle | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 aboutit-sample/build.gradle (limited to 'aboutit-sample/build.gradle') diff --git a/aboutit-sample/build.gradle b/aboutit-sample/build.gradle new file mode 100644 index 0000000..803ffdb --- /dev/null +++ b/aboutit-sample/build.gradle @@ -0,0 +1,26 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 21 + buildToolsVersion "21.1.2" + + defaultConfig { + applicationId "com.snilius.aboutit.sample" + minSdkVersion 14 + targetSdkVersion 21 + versionCode 1 + versionName "1.0.0" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + compile fileTree(include: ['*.jar'], dir: 'libs') + compile 'com.android.support:appcompat-v7:21.0.3' + compile project(':aboutit') +} -- cgit v1.2.3