Open-source alternative Instagram client on Android. More maintainers needed!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
605 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. buildscript {
  2. ext{
  3. kotlin_version = '1.5.20'
  4. nav_version = "2.4.0-alpha04"
  5. }
  6. repositories {
  7. google()
  8. mavenCentral()
  9. }
  10. dependencies {
  11. classpath 'com.android.tools.build:gradle:4.2.2'
  12. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  13. classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
  14. }
  15. }
  16. allprojects {
  17. repositories {
  18. google()
  19. mavenCentral()
  20. maven { url 'https://jitpack.io' }
  21. }
  22. }
  23. task clean(type: Delete) {
  24. delete rootProject.buildDir
  25. }