24 lines
492 B
Groovy
24 lines
492 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 19
|
|
buildToolsVersion "22.0.1"
|
|
|
|
defaultConfig {
|
|
applicationId "info.androidhive.speechtotext"
|
|
minSdkVersion 11
|
|
targetSdkVersion 19
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:support-v4:19.1.0'
|
|
}
|