Skip to content

Commit

Permalink
fix: conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
zintarh committed Oct 11, 2024
2 parents 32d73c1 + d66b1de commit fc4520b
Show file tree
Hide file tree
Showing 15 changed files with 472 additions and 33 deletions.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,11 @@
**/.DS_Store

# mdBook
docs/book/
docs/book/

**/.gradle/*

lightclientservice/app/build
lightclientservice/target
lightclientservice/local.properties
lightclientservice/.idea
318 changes: 318 additions & 0 deletions wallet_app/android/.idea/other.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions wallet_app/android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.1"
Expand Down
2 changes: 1 addition & 1 deletion wallet_app/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
android:exported="true"
android:theme="@style/Theme.Walletapp"/>

<activity android:name=".ui.activity.AccountBalanceActivity"
<activity android:name=".AccountBalanceActivity"
android:exported="true"
android:theme="@style/Theme.Walletapp"/>

Expand Down
Loading

0 comments on commit fc4520b

Please sign in to comment.