Converted Android_Pebble_SD to use Android Studio (Gradle) build system.

This commit is contained in:
Graham Jones
2015-08-11 17:37:23 +01:00
commit 4ffddf7d6c
265 changed files with 8650 additions and 0 deletions

24
app/build.gradle Normal file
View File

@@ -0,0 +1,24 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "uk.org.openseizuredetector"
minSdkVersion 11
targetSdkVersion 11
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile files('libs/mpandroidchartlibrary-2-0-7.jar')
compile files('libs/pebblekit-2.6.0-eclipse.jar')
}