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.

25 lines
486 B

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