Files
StackLayoutManager/sample/build.gradle
leafwai 046e67bf78 1.迁移到AndroidX
2.修改支持无限循环滑动
2022-02-17 15:43:46 +08:00

41 lines
1.4 KiB
Groovy

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 31
defaultConfig {
applicationId "com.littlemango.stacklayoutmanagermaster"
minSdkVersion 21
targetSdkVersion 31
versionCode 6
versionName "1.0.5"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
ext.kotlin_version = '1.6.10'
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.cardview:cardview:1.0.0'
implementation project(':StackLayoutManager')
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
implementation 'com.google.android.material:material:1.5.0'
}