Migrated project to Android Studio

This commit is contained in:
Alexander Pacha
2016-02-28 18:30:08 +01:00
parent 193cb0c15d
commit 0a761b94f6
56 changed files with 341 additions and 192 deletions

23
app/build.gradle Normal file
View File

@@ -0,0 +1,23 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "org.hitlabnz.sensor_fusion_demo"
minSdkVersion 11
targetSdkVersion 23
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:23.2.0'
}