mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-11-10 22:46:49 +01:00
Updating dependencies
This commit is contained in:
@@ -43,7 +43,7 @@ android {
|
|||||||
compose true
|
compose true
|
||||||
}
|
}
|
||||||
composeOptions {
|
composeOptions {
|
||||||
kotlinCompilerExtensionVersion '1.4.0'
|
kotlinCompilerExtensionVersion "1.4.3"
|
||||||
}
|
}
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
resources {
|
resources {
|
||||||
@@ -54,7 +54,7 @@ android {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'androidx.core:core-ktx:1.9.0'
|
implementation 'androidx.core:core-ktx:1.9.0'
|
||||||
implementation 'androidx.activity:activity-compose:1.6.1'
|
implementation 'androidx.activity:activity-compose:1.7.0-beta01'
|
||||||
implementation "androidx.compose.ui:ui:$compose_ui_version"
|
implementation "androidx.compose.ui:ui:$compose_ui_version"
|
||||||
implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
|
implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
|
||||||
|
|
||||||
@@ -64,17 +64,17 @@ dependencies {
|
|||||||
// Observe Live data as State
|
// Observe Live data as State
|
||||||
implementation 'androidx.compose.runtime:runtime-livedata:1.4.0-beta01'
|
implementation 'androidx.compose.runtime:runtime-livedata:1.4.0-beta01'
|
||||||
|
|
||||||
implementation 'androidx.compose.material:material:1.4.0-beta01'
|
implementation 'androidx.compose.material:material:1.4.0-beta02'
|
||||||
implementation "androidx.compose.material:material-icons-extended:1.4.0-beta01"
|
implementation "androidx.compose.material:material-icons-extended:1.4.0-beta02"
|
||||||
|
|
||||||
// Lifecycle
|
// Lifecycle
|
||||||
implementation 'androidx.lifecycle:lifecycle-runtime-compose:2.6.0-beta01'
|
implementation "androidx.lifecycle:lifecycle-runtime-compose:$lifecycle_version"
|
||||||
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.0-beta01'
|
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
|
||||||
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.0-beta01'
|
implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
|
||||||
implementation 'androidx.lifecycle:lifecycle-livedata:2.6.0-beta01'
|
implementation "androidx.lifecycle:lifecycle-livedata:$lifecycle_version"
|
||||||
|
|
||||||
// Swipe Refresh
|
// Swipe Refresh
|
||||||
implementation 'com.google.accompanist:accompanist-swiperefresh:0.29.0-alpha'
|
implementation 'com.google.accompanist:accompanist-swiperefresh:0.29.1-alpha'
|
||||||
|
|
||||||
// Bitcoin secp256k1 bindings to Android
|
// Bitcoin secp256k1 bindings to Android
|
||||||
implementation 'fr.acinq.secp256k1:secp256k1-kmp-jni-android:0.7.1'
|
implementation 'fr.acinq.secp256k1:secp256k1-kmp-jni-android:0.7.1'
|
||||||
@@ -98,7 +98,9 @@ dependencies {
|
|||||||
|
|
||||||
// link preview
|
// link preview
|
||||||
implementation 'tw.com.oneup.www:Baha-UrlPreview:1.0.1'
|
implementation 'tw.com.oneup.www:Baha-UrlPreview:1.0.1'
|
||||||
implementation 'androidx.security:security-crypto-ktx:1.1.0-alpha04'
|
|
||||||
|
// Encrypted Key Storage
|
||||||
|
implementation 'androidx.security:security-crypto-ktx:1.1.0-alpha05'
|
||||||
|
|
||||||
// view videos
|
// view videos
|
||||||
implementation 'com.google.android.exoplayer:exoplayer:2.18.3'
|
implementation 'com.google.android.exoplayer:exoplayer:2.18.3'
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
ext {
|
ext {
|
||||||
compose_ui_version = '1.4.0-beta01'
|
lifecycle_version = '2.6.0-rc1'
|
||||||
|
compose_ui_version = '1.4.0-beta02'
|
||||||
nav_version = "2.5.3"
|
nav_version = "2.5.3"
|
||||||
room_version = "2.4.3"
|
room_version = "2.4.3"
|
||||||
accompanist_version = "0.28.0"
|
accompanist_version = "0.28.0"
|
||||||
@@ -9,6 +10,6 @@ buildscript {
|
|||||||
plugins {
|
plugins {
|
||||||
id 'com.android.application' version '7.4.1' apply false
|
id 'com.android.application' version '7.4.1' apply false
|
||||||
id 'com.android.library' version '7.4.1' apply false
|
id 'com.android.library' version '7.4.1' apply false
|
||||||
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
|
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.8.0' apply false
|
id 'org.jetbrains.kotlin.jvm' version '1.8.10' apply false
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user