--- a
+++ b/personalassistantcommons/PersonalAssistantShared/build.gradle
@@ -0,0 +1,41 @@
+apply plugin: 'com.android.library'
+
+android {
+ compileSdkVersion 23
+ buildToolsVersion "21.1.2"
+
+ defaultConfig {
+ minSdkVersion 18
+ targetSdkVersion 23
+ versionCode 1
+ versionName "1.0"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+
+ lintOptions {
+ abortOnError false
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ compile 'com.android.support:appcompat-v7:23.1.1'
+ compile 'javax.ws.rs:jsr311-api:0.11'
+ compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.0'
+ compile 'org.springframework:spring-beans:3.0.5.RELEASE'
+ compile 'org.springframework.data:spring-data-mongodb:1.8.2.RELEASE'
+ compile 'com.fasterxml.jackson.core:jackson-core:2.7.0'
+ compile 'com.google.code.gson:gson:2.2.4'
+}
+
+
+repositories{
+ flatDir{
+ dirs 'libs'
+ }
+}