Migrate to gradle, appcompat as external dependency.
[mobilnebezpieczenstwo.git] / app / build.gradle
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644 (file)
index 0000000..421d2a1
--- /dev/null
@@ -0,0 +1,25 @@
+apply plugin: 'com.android.application'
+
+android {
+    compileSdkVersion 'Google Inc.:Google APIs:21'
+    buildToolsVersion "21.1.2"
+
+    defaultConfig {
+        applicationId "com.samsung.srpol"
+        minSdkVersion 8
+        targetSdkVersion 21
+    }
+
+    buildTypes {
+        release {
+            minifyEnabled false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
+        }
+    }
+}
+
+dependencies {
+    compile 'com.android.support:appcompat-v7:21.0.3'
+    compile files('libs/listviewanimations_lib-core_3.1.0.jar')
+    compile files('libs/nineoldandroids-2.4.0.jar')
+}