Initial commit.

This commit is contained in:
Erik C. Thauvin 2015-10-20 12:32:28 -07:00
commit 7cbc8b1778
51 changed files with 1384 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 "23.0.1"
defaultConfig {
applicationId "net.thauvin.erik.android.ellipticalstepsmiles"
minSdkVersion 21
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}