dvr/app/build.gradle
Simon 7fa8ea10f4 Fixes
- Fix for different sprite image in each eye
- When player dies, switch to big screen mode (comfort)
- Massive improvement to the look up/down so it doesn't skew any more
- No need for lens correction offset calculation due to above fix
2016-03-22 20:23:05 +00:00

25 lines
555 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 16
buildToolsVersion '19.1.0'
defaultConfig {
applicationId "com.drbeef.dvr"
minSdkVersion 16
targetSdkVersion 19
versionCode 3
versionName '1.0.2'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
}