Files
Android-PickerView_JingZhi/app/build.gradle
linglongxin24 801b889b14 Initial commit
2016-05-31 16:53:19 +08:00

28 lines
674 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.bigkoo.pickerviewdemo"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':pickerview')
// compile 'com.bigkoo:pickerview:2.0.8'
compile 'com.android.support:appcompat-v7:23.1.0'
}