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

36 lines
905 B
Groovy
Raw Normal View History

apply plugin: 'com.android.library'
android {
compileSdkVersion 27
defaultConfig {
minSdkVersion 15
targetSdkVersion 27
versionCode 114
versionName "1.1.4"
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 {
compile fileTree(dir: 'libs', include: ['*.jar'])
2019-11-15 12:09:08 +01:00
androidTestCompile('androidx.test.espresso:espresso-core:3.1.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
2019-11-15 12:09:08 +01:00
compile 'androidx.appcompat:appcompat:1.0.0'
testCompile 'junit:junit:4.12'
// recycler
2019-11-15 12:09:08 +01:00
compile 'androidx.recyclerview:recyclerview:1.0.0'
compile 'com.beloo.widget:ChipsLayoutManager:0.3.7@aar'
}