summaryrefslogtreecommitdiff
path: root/BenchmarkFramework/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'BenchmarkFramework/app/build.gradle')
-rw-r--r--BenchmarkFramework/app/build.gradle27
1 files changed, 27 insertions, 0 deletions
diff --git a/BenchmarkFramework/app/build.gradle b/BenchmarkFramework/app/build.gradle
new file mode 100644
index 0000000..f6a03c0
--- /dev/null
+++ b/BenchmarkFramework/app/build.gradle
@@ -0,0 +1,27 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 23
+ buildToolsVersion "23.0.2"
+
+ defaultConfig {
+ applicationId "org.linaro.iasenov.benchmarkframework"
+ minSdkVersion 12
+ targetSdkVersion 23
+ versionCode 1
+ versionName "1.0"
+ }
+ 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.0'
+ compile 'com.android.support:design:23.1.0'
+}