Create android-pickers module

This commit is contained in:
2017-06-05 16:38:58 -04:00
parent fc4b610d59
commit 217516ad59
54 changed files with 343 additions and 283 deletions

View File

@@ -0,0 +1,27 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation 'com.android.support:appcompat-v7:25.3.1'
}