mirror of
https://github.com/DrBeef/DVR.git
synced 2024-11-23 20:42:35 +00:00
5387a360b9
- Cycle through all available weapons - Ensure phone orientation is fixed landscape
25 lines
555 B
Groovy
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 6
|
|
versionName '1.0.5'
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
}
|