mirror of
https://github.com/AdrianKuta/Expandable-RecyclerView.git
synced 2025-04-20 07:29:02 +02:00
* 6: Use data model instead of String. Remove databinding. * 6: Use online lib dependency * 6: Remove CircleCI
40 lines
1.2 KiB
Groovy
40 lines
1.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
namespace 'com.github.adriankuta'
|
|
compileSdkVersion 33
|
|
buildToolsVersion "33.0.0"
|
|
defaultConfig {
|
|
applicationId "com.github.adriankuta"
|
|
minSdkVersion 23
|
|
targetSdkVersion 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
implementation 'androidx.appcompat:appcompat:1.5.1'
|
|
implementation 'androidx.core:core-ktx:1.9.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'com.github.adriankuta:expandable-recyclerView:2.1.0'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
|
|
}
|