Infinity-For-Reddit/build.gradle
Eitan 6da36366a2
Changed the way read posts are handled to support an arbitrary read posts limit (#1720)
* Changed the way read posts are handled to support an arbitrary 'read posts limit'

* Changed db size in summary to kb

* Use return HashSet instead of List in ReadPostsListInterface

* Moved DB summary to Advanced Preferences.

* Completed merge from master into feature/readPost

* Fix some bugs and code style.

---------

Co-authored-by: Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com>
2024-10-21 03:43:32 +07:00

27 lines
562 B
Groovy

buildscript {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}