Files
open-keychain/extern/MaterialChipsInput/build.gradle

32 lines
771 B
Groovy
Raw 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'
implementation 'com.beloo.widget:ChipsLayoutManager:0.3.7@aar'
}