repositories {
  maven { url 'https://jitpack.io' }
}

android {
  configurations {
    all*.exclude group:'com.romandanylyk', module:'pageindicatorview'
  }
}

dependencies {
  def androidxVersion =  project.hasProperty("androidXAppCompat") ? project.androidXAppCompat : "1.3.1"

  implementation "androidx.appcompat:appcompat:$androidxVersion"

  implementation 'androidx.viewpager2:viewpager2:1.0.0'

  implementation 'com.github.adrielcafe:PageIndicatorView:1.0.6'
}
