1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-515 Editor | Fix | Fix ff video buttons (#2769)

* DROID-515 App | Tech | Update dependencies

* DROID-515 Editor | Fix | Fix ff video buttons

* DROID-453 Editor | Fix | Unmerge
This commit is contained in:
Mikhail 2022-12-19 20:14:51 +03:00 committed by GitHub
parent a0e0e7362a
commit 164e0eff61
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 242 additions and 260 deletions

View file

@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 32
compileSdkVersion 33
buildToolsVersion "32.0.0"
defaultConfig {
@ -46,22 +46,22 @@ dependencies {
implementation project(':core-ui')
implementation project(':presentation')
implementation applicationDependencies.kotlin
implementation applicationDependencies.appcompat
implementation applicationDependencies.glide
implementation libs.kotlin
implementation libs.appcompat
implementation libs.glide
implementation applicationDependencies.coroutinesAndroid
implementation applicationDependencies.constraintLayout
implementation libs.androidxCore
implementation applicationDependencies.timber
implementation applicationDependencies.fragment
implementation applicationDependencies.design
implementation libs.fragment
implementation libs.design
implementation applicationDependencies.pickT
//implementation 'com.github.gregcockroft:AndroidMath:ALPHA'
testImplementation unitTestDependencies.junit
testImplementation unitTestDependencies.kotlinTest
testImplementation libs.junit
testImplementation libs.kotlinTest
testImplementation unitTestDependencies.robolectricLatest
testImplementation unitTestDependencies.androidXTestCore
testImplementation unitTestDependencies.mockitoKotlin
testImplementation libs.mockitoKotlin
}