Files
Haleon-Egypt-PD/library/build.gradle
T

47 lines
1.2 KiB
Groovy

apply plugin: 'com.android.library'
ext {
bintrayRepo = 'maven'
bintrayName = 'MultiSelectSpinner'
publishedGroupId = 'com.inthecheesefactory.thecheeselibrary'
libraryName = 'MultiSelectSpinner'
artifact = 'MultiSelectSpinner'
libraryDescription = 'Its helpful to Select Multiple Values from Spinner list.'
siteUrl = 'https://github.com/pratikbutani/MultiSelectSpinner'
gitUrl = 'https://github.com/pratikbutani/MultiSelectSpinner'
libraryVersion = '1.0'
developerId = 'pratikbutani'
developerName = 'Pratik Butani'
developerEmail = 'pratik13butani@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
android {
namespace("com.androidbuts.multispinnerfilter")
compileSdk(35)
defaultConfig {
minSdkVersion 24
targetSdk(35)
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
productFlavors {
}
}
dependencies {
implementation 'com.github.rey5137:material:1.2.2'
}