build.gradle 714 B

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.library'
  2. description = 'Android BottomSheetBehavior with ViewPager support'
  3. group = 'biz.laenger.android'
  4. android {
  5. compileSdkVersion COMPILE_SDK_VERSION as int
  6. buildToolsVersion BUILD_TOOLS_VERSION
  7. defaultPublishConfig 'debug'
  8. defaultConfig {
  9. minSdkVersion MIN_SDK_VERSION
  10. targetSdkVersion TARGET_SDK_VERSION
  11. versionName '0.0.4'
  12. }
  13. buildTypes {
  14. release {
  15. }
  16. debug {
  17. }
  18. }
  19. lintOptions {
  20. checkReleaseBuilds false
  21. abortOnError false
  22. }
  23. }
  24. dependencies {
  25. implementation 'com.google.android.material:material:1.1.0'
  26. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  27. }