aboutsummaryrefslogtreecommitdiffstats
path: root/cgeo-calendar
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-06-09 22:51:02 +0200
committerArne Schwabe <arne@rfc2549.org>2014-06-09 23:00:18 +0200
commit1f6359f235547b7b1cefe7abed7dccc34812e922 (patch)
tree7cc73edfb1d283ecd925d4f7ec1599edca522a44 /cgeo-calendar
parentcf1f8ec8123361922a9cf3cf083de37097acf77f (diff)
downloadcgeo-1f6359f235547b7b1cefe7abed7dccc34812e922.zip
cgeo-1f6359f235547b7b1cefe7abed7dccc34812e922.tar.gz
cgeo-1f6359f235547b7b1cefe7abed7dccc34812e922.tar.bz2
Fix bulding with gradle/Android studio.
Update rx java to 0.19 Also add unfinished prototypes for the seldom used side projects.
Diffstat (limited to 'cgeo-calendar')
-rw-r--r--cgeo-calendar/build.gradle29
1 files changed, 29 insertions, 0 deletions
diff --git a/cgeo-calendar/build.gradle b/cgeo-calendar/build.gradle
new file mode 100644
index 0000000..8a65860
--- /dev/null
+++ b/cgeo-calendar/build.gradle
@@ -0,0 +1,29 @@
+apply plugin: 'android'
+
+android {
+ compileSdkVersion 19
+ buildToolsVersion "19.1.0"
+
+
+
+ defaultConfig {
+ minSdkVersion 9
+ targetSdkVersion 19
+ versionName "1.2"
+ versionCode 3
+ }
+
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['src']
+ res.srcDirs = ['res']
+ assets.srcDirs = ['assets']
+ }
+ }
+}
+
+dependencies {
+ // The dependency to the ICalnder interface from the main project is missing
+ // compile project(":main") is not working
+} \ No newline at end of file