--- a
+++ b/eventratingapp/app/build.gradle
@@ -0,0 +1,41 @@
+apply plugin: 'com.android.application'
+
+android {
+    compileSdkVersion 23
+    buildToolsVersion "23.0.3"
+
+    defaultConfig {
+        applicationId "alfred.eu.eventratingapp"
+        minSdkVersion 19
+        targetSdkVersion 23
+        versionCode 24
+        versionName "1.0.24"
+    }
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+        }
+    }
+}
+
+dependencies {
+    compile fileTree(dir: 'libs', include: ['*.jar'])
+    testCompile 'junit:junit:4.12'
+    compile 'com.android.support:appcompat-v7:23.1.1'
+    compile 'com.android.support:design:23.1.1'
+    compile 'com.google.code.gson:gson:2.2.4'
+    compile 'eu.alfred.personalassistant.sharedlibrary:PersonalAssistantShared-debug@aar'
+}
+
+repositories{
+    flatDir{
+        dirs 'libs'
+    }
+}
+
+android {
+    lintOptions {
+        abortOnError false
+    }
+}