From 1f6359f235547b7b1cefe7abed7dccc34812e922 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Mon, 9 Jun 2014 22:51:02 +0200 Subject: Fix bulding with gradle/Android studio. Update rx java to 0.19 Also add unfinished prototypes for the seldom used side projects. --- cgeo-contacts/build.gradle | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 cgeo-contacts/build.gradle (limited to 'cgeo-contacts') diff --git a/cgeo-contacts/build.gradle b/cgeo-contacts/build.gradle new file mode 100644 index 0000000..f4f3693 --- /dev/null +++ b/cgeo-contacts/build.gradle @@ -0,0 +1,31 @@ +apply plugin: 'android' + +android { + compileSdkVersion 19 + buildToolsVersion "19.1.0" + + + + defaultConfig { + minSdkVersion 9 + targetSdkVersion 19 + versionName "1.1" + versionCode 2 + } + + sourceSets { + main { + manifest.srcFile 'AndroidManifest.xml' + java.srcDirs = ['src'] + res.srcDirs = ['res'] + assets.srcDirs = ['assets'] + } + } +} + +dependencies { + compile 'org.apache.commons:commons-lang3:3.3.2' + compile files('../main/compile-libs/org.eclipse.jdt.annotation_1.1.0.v20130513-1648.jar') + // The depency to the ICalnder interface from the main project is missing + // compile(:main) is not right +} \ No newline at end of file -- cgit v1.1