Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ design/
.venv/
site/
.cache/
.kotlin/
14 changes: 7 additions & 7 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.jlleitschuh.gradle.ktlint.reporter.ReporterType

plugins {
id("com.android.application") version "8.13.2"
id("org.jetbrains.kotlin.android") version "2.3.10"
id("org.jetbrains.kotlin.plugin.compose") version "2.3.10"
id("org.jetbrains.kotlin.plugin.serialization") version "2.3.10"
id("com.google.protobuf") version "0.9.6"
id("org.jlleitschuh.gradle.ktlint") version "14.0.1"
id("com.android.application") version "9.2.0"
id("org.jetbrains.kotlin.plugin.compose") version "2.3.21"
id("org.jetbrains.kotlin.plugin.serialization") version "2.3.21"
id("com.google.protobuf") version "0.10.0"
id("org.jlleitschuh.gradle.ktlint") version "14.2.0"
}

// This is the version of the app that is displayed in the UI on the drawer.
Expand All @@ -21,6 +20,7 @@ android {
buildFeatures {
viewBinding = true
compose = true
buildConfig = true
}

defaultConfig {
Expand Down Expand Up @@ -77,7 +77,7 @@ dependencies {
implementation("com.composables:icons-lucide:1.1.0")

// Bitcoin Development Kit
implementation("org.bitcoindevkit:bdk-android:2.3.1")
implementation("org.bitcoindevkit:bdk-android:3.0.0-SNAPSHOT-f8f8bfd4")

// QR codes
implementation("com.google.zxing:core:3.5.4")
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
android.useAndroidX=true
kotlin.code.style=official
android.enableJetifier=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading