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.

27 lines
585 B

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