mirror of
https://github.com/DrBeef/QVR.git
synced 2024-11-22 11:51:27 +00:00
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.qvr"
|
|
minSdkVersion 16
|
|
targetSdkVersion 19
|
|
versionCode 1
|
|
versionName '1.0.0'
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
productFlavors {
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
|
}
|