mirror of
https://github.com/Docile-Alligator/Infinity-For-Reddit.git
synced 2026-08-18 02:51:58 +00:00
* 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.
31 lines
691 B
Groovy
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
|
|
} |