* wire up api for link metadata parsing * add getLinkPreview (synchonous for now) * api wiring fix * get network requests off main thread * copy over state machine logic from iOS * filter api parsing calls from logs * refactor of image processing * remove image deepcopy * minor change to log filtering * mobile: link previews Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
27 lines
909 B
Groovy
27 lines
909 B
Groovy
buildscript {
|
|
ext {
|
|
compose_version = '1.1.1'
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.1.3'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:1.3.2"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id 'com.android.application' version '7.1.3' apply false
|
|
id 'com.android.library' version '7.1.3' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
|
|
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.10'
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |