Compare commits
43 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 80a6ef5b29 | |||
| a352ebd21d | |||
| ee686c4e0c | |||
| cefc7032bd | |||
| 26c1142375 | |||
| 20ef7ed04a | |||
| 7f9749ef07 | |||
| a907102c19 | |||
| 8c5f0f4d15 | |||
| 367697b66b | |||
| 000ad7f979 | |||
| e320c22bce | |||
| 72087c72e6 | |||
| 5ef09f0f9b | |||
| 4997107aa4 | |||
| 7665723ea6 | |||
| 62dc4cf0d5 | |||
| bdb15389d8 | |||
| d2ca79ac57 | |||
| 3034f08bf4 | |||
| 529fb2cf16 | |||
| 27ead287ae | |||
| a6dce9a524 | |||
| 45bbc6d90b | |||
| fb62271321 | |||
| 57885f9882 | |||
| a04f0aa75a | |||
| 695f748be5 | |||
| c85e9b6dfa | |||
| 283fa26763 | |||
| cc1272f297 | |||
| 4510ff6f57 | |||
| 155595eca1 | |||
| 25c6456bff | |||
| c153710f3d | |||
| 2154b74413 | |||
| 132d1317a0 | |||
| 1468124c23 | |||
| dae511c2a2 | |||
| b89d49d407 | |||
| 0fee2c31ab | |||
|
eba6b40779
|
|||
| 93442645fc |
@@ -23,7 +23,7 @@ jobs:
|
|||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v7
|
||||||
with:
|
with:
|
||||||
submodules: true
|
submodules: true
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|||||||
@@ -4,7 +4,9 @@
|
|||||||
<img width="100px" src="./metadata/en-US/images/icon.png" alt="Logo">
|
<img width="100px" src="./metadata/en-US/images/icon.png" alt="Logo">
|
||||||
|
|
||||||
<p>A minimalist fidelity/loyalty card app with Keepass Database storage</p>
|
<p>A minimalist fidelity/loyalty card app with Keepass Database storage</p>
|
||||||
|
|
||||||
|
<a href="https://ko-fi.com/I2I615VP5M"><img src="https://ko-fi.com/img/githubbutton_sm.svg" alt="ko-fi"></a>
|
||||||
|
<br>
|
||||||
<img src="https://forthebadge.com/images/badges/built-for-android.svg" alt="Built for Android">
|
<img src="https://forthebadge.com/images/badges/built-for-android.svg" alt="Built for Android">
|
||||||
<img src="https://forthebadge.com/images/badges/built-with-love.svg" alt="Built with love">
|
<img src="https://forthebadge.com/images/badges/built-with-love.svg" alt="Built with love">
|
||||||
<br>
|
<br>
|
||||||
@@ -40,7 +42,7 @@
|
|||||||
<a href="https://apt.izzysoft.de/fdroid/index/apk/net.helcel.fidelity">
|
<a href="https://apt.izzysoft.de/fdroid/index/apk/net.helcel.fidelity">
|
||||||
<img width="200" height="80" alt="Izzy Download" src=".github/images/izzy.png">
|
<img width="200" height="80" alt="Izzy Download" src=".github/images/izzy.png">
|
||||||
</a>
|
</a>
|
||||||
<a href="https://github.com/choelzl/keepass-fidelity/releases/latest">
|
<a href="https://github.com/helcel-net/keepass-fidelity/releases/latest">
|
||||||
<img width="200" height="84" alt="APK Download" src=".github/images/apk.png">
|
<img width="200" height="84" alt="APK Download" src=".github/images/apk.png">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
@@ -66,7 +68,7 @@ Thanks to all contributors, the developers of our dependencies, and our users.
|
|||||||
## 📝 License
|
## 📝 License
|
||||||
|
|
||||||
```
|
```
|
||||||
Copyright (C) 2024 Helcel
|
Copyright (C) 2026 Helcel
|
||||||
|
|
||||||
Licensed under the Unlicense
|
Licensed under the Unlicense
|
||||||
For more information, please refer to <https://unlicense.org>
|
For more information, please refer to <https://unlicense.org>
|
||||||
|
|||||||
+6
-5
@@ -13,13 +13,14 @@ def getCommitCount() {
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'com.android.application'
|
id 'com.android.application'
|
||||||
id 'org.jetbrains.kotlin.plugin.serialization' version '2.3.21'
|
id 'org.jetbrains.kotlin.plugin.serialization' version '2.4.0'
|
||||||
id 'org.jetbrains.kotlin.plugin.compose' version '2.3.21'
|
id 'org.jetbrains.kotlin.plugin.compose' version '2.4.10'
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
namespace 'net.helcel.fidelity'
|
namespace 'net.helcel.fidelity'
|
||||||
compileSdk = 37
|
compileSdk = 37
|
||||||
|
ndkVersion "25.2.9519653" //Match this to KeypassDX crypto NDK version
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId 'net.helcel.fidelity'
|
applicationId 'net.helcel.fidelity'
|
||||||
@@ -104,7 +105,7 @@ android {
|
|||||||
dependencies {
|
dependencies {
|
||||||
implementation 'androidx.compose.ui:ui'
|
implementation 'androidx.compose.ui:ui'
|
||||||
implementation 'androidx.compose.material3:material3:1.4.0'
|
implementation 'androidx.compose.material3:material3:1.4.0'
|
||||||
implementation 'androidx.compose.material:material:1.11.2'
|
implementation 'androidx.compose.material:material:1.11.4'
|
||||||
implementation 'androidx.compose.material:material-icons-extended:1.7.8'
|
implementation 'androidx.compose.material:material-icons-extended:1.7.8'
|
||||||
implementation 'androidx.navigation:navigation-compose:2.9.8'
|
implementation 'androidx.navigation:navigation-compose:2.9.8'
|
||||||
implementation 'androidx.preference:preference-ktx:1.2.1'
|
implementation 'androidx.preference:preference-ktx:1.2.1'
|
||||||
@@ -127,8 +128,8 @@ dependencies {
|
|||||||
implementation project(":database")
|
implementation project(":database")
|
||||||
implementation project(":crypto")
|
implementation project(":crypto")
|
||||||
|
|
||||||
implementation platform('androidx.compose:compose-bom:2026.05.01')
|
implementation platform('androidx.compose:compose-bom:2026.06.01')
|
||||||
implementation 'androidx.compose.ui:ui-tooling:1.11.2'
|
implementation 'androidx.compose.ui:ui-tooling:1.11.4'
|
||||||
implementation 'androidx.compose.ui:ui-tooling-preview'
|
implementation 'androidx.compose.ui:ui-tooling-preview'
|
||||||
|
|
||||||
//Submodule
|
//Submodule
|
||||||
|
|||||||
+3
-3
@@ -7,8 +7,8 @@ buildscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'com.android.application' version '9.2.1' apply false
|
id 'com.android.application' version '9.3.0' apply false
|
||||||
id 'com.android.library' version '9.2.1' apply false
|
id 'com.android.library' version '9.2.1' apply false
|
||||||
id 'org.jetbrains.kotlin.android' version '2.3.21' apply false
|
id 'org.jetbrains.kotlin.android' version '2.4.10' apply false
|
||||||
id 'com.autonomousapps.dependency-analysis' version '3.13.0' apply true
|
id 'com.autonomousapps.dependency-analysis' version '3.16.1' apply true
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
retries=0
|
retries=0
|
||||||
retryBackOffMs=500
|
retryBackOffMs=500
|
||||||
|
|||||||
Reference in New Issue
Block a user