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

Releasing | Fix pack 2 (#1563)

This commit is contained in:
Evgenii Kozlov 2021-06-18 17:56:43 +03:00 committed by GitHub
parent 2d2e40c051
commit 5ddf5b43ee
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 12 additions and 7 deletions

View file

@ -36,8 +36,7 @@
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_marginTop="12dp"
android:background="@drawable/circle_blue"
android:backgroundTint="#80F5F5F5"
android:background="@drawable/avatar_ripple"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tvGreeting"

View file

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardBackgroundColor="@color/white"
@ -9,6 +8,7 @@
app:cardCornerRadius="12dp">
<LinearLayout
android:background="@drawable/ripple_dashboard_card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

View file

@ -9,6 +9,7 @@
app:cardCornerRadius="12dp">
<LinearLayout
android:background="@drawable/ripple_dashboard_card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

View file

@ -1,7 +1,7 @@
apply from: './dependencies.gradle'
buildscript {
ext.kotlin_version = '1.5.0'
ext.kotlin_version = '1.5.10'
ext.gradle_tools = '3.1.3'
ext.build_tools = '29.0.0'
ext.nav_version = '2.3.0'
@ -25,7 +25,7 @@ buildscript {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath 'com.google.gms:google-services:4.3.8'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.6.1'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.0'
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath 'com.squareup.wire:wire-gradle-plugin:3.5.0'

View file

@ -25,7 +25,7 @@ ext {
navigation_version = '2.3.0'
// Third party libraries
exoplayer_version = '2.14.0'
exoplayer_version = '2.14.1'
glide_version = '4.12.0'
blurry_version = '4.0.0'
shimmer_layout_version = "0.5.0"

View file

@ -12,7 +12,7 @@
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.jvmargs=-Xmx2048M
org.gradle.jvmargs=-Xmx3072m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
org.gradle.configureondemand=true
android.enableR8=true

View file

@ -48,6 +48,11 @@ android {
androidExtensions {
experimental = true
}
lintOptions {
// https://issuetracker.google.com/issues/169249668#comment8
disable 'NullSafeMutableLiveData'
}
}
dependencies {