You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
apply plugin: 'com.android.library' |
|
|
|
android { |
|
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION) |
|
resourcePrefix "__picker_" |
|
|
|
dexOptions { |
|
javaMaxHeapSize "4g" |
|
} |
|
defaultConfig { |
|
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION) |
|
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION) |
|
} |
|
// flavorDimensions "channel" |
|
lintOptions { |
|
abortOnError false |
|
} |
|
compileOptions { |
|
targetCompatibility 1.8 |
|
sourceCompatibility 1.8 |
|
} |
|
|
|
} |
|
ext { |
|
supportLibVersion = project.ANDROID_SUPPORT_LIBRARY_VERSION |
|
} |
|
dependencies { |
|
implementation "com.android.support:support-v4:$supportLibVersion" |
|
implementation "com.android.support:appcompat-v7:$supportLibVersion" |
|
implementation "com.android.support:design:$supportLibVersion" |
|
implementation "com.android.support:recyclerview-v7:$supportLibVersion" |
|
implementation "com.android.support:support-annotations:$supportLibVersion" |
|
implementation 'com.github.bumptech.glide:glide:4.1.1' |
|
// Material Dialogs |
|
implementation 'com.afollestad.material-dialogs:core:0.9.4.5' |
|
}
|
|
|