Files

32 lines
773 B
Groovy
Raw Permalink Normal View History

apply plugin: 'com.android.library'
android {
2024-01-10 17:48:10 +01:00
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
minSdkVersion 15
targetSdkVersion 28
versionCode 114
versionName "1.1.4"
2024-01-11 10:52:54 +01:00
namespace 'org.sufficientlysecure.materialchips'
2019-11-15 12:09:08 +01:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
2024-01-10 17:48:10 +01:00
implementation 'androidx.appcompat:appcompat:1.6.1'
// recycler
2024-01-10 17:48:10 +01:00
implementation 'androidx.recyclerview:recyclerview:1.3.2'
2025-09-30 15:13:06 +02:00
implementation 'com.github.BelooS:ChipsLayoutManager:v0.3.7@aar'
}