Files
Infinity-For-Reddit/build.gradle
Docile-Alligator 13fdf9c512 v8.1.3 again (#1896)
* Thanks to @edgan again for fixing the embedded gifs problem again.

* Fix GIF being displayed as a static image after upload.

* Fix video control not working in PostVideoActivity.

* Version 8.1.3.

* Fix NullPointerException in APIUtils.subredditAPICallLimit.

* Custom error in Webview.

* Version 8.1.4.

* Use AppAuthLoginActivity to login.

* Show user agreement dialog in AppAuthLoginActivity.

* Refine UI in AppAuthLoginActivity. Don't use webview's user agent in LoginActivity.

* Restrict Custom Tab login to Chrome when user selects browser-based auth.

* Version 8.1.5.
2026-04-14 15:35:17 -04:00

31 lines
691 B
Groovy

buildscript {
ext {
kotlin_version = '1.9.24'
}
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.13.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// 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
}