Support edge to edge mode on older devices

This commit is contained in:
minibits-cash
2026-06-02 10:00:31 +02:00
parent aa8699e57f
commit e36bd02bf8
9 changed files with 12 additions and 12 deletions

View File

@@ -95,7 +95,7 @@ android {
applicationId "com.minibits_wallet"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 58080
versionCode 58082
versionName "0.4.3"
}

View File

@@ -110,6 +110,6 @@
</intent-filter>
<meta-data android:name="android.nfc.cardemulation.host_apdu_service" android:resource="@xml/aid_list"/>
</service>
<meta-data android:name="com.hotupdater.FINGERPRINT_HASH" android:value="87f7f5e2ff3ace8ca5c2fd2ab6df5d0b7b513ed8"/>
<meta-data android:name="com.hotupdater.FINGERPRINT_HASH" android:value="42f96edd8a64cfae93987ac32cacd202fda04a7e"/>
</application>
</manifest>

View File

@@ -41,5 +41,5 @@ hermesEnabled=true
# Use this property to enable edge-to-edge display support.
# This allows your app to draw behind system bars for an immersive UI.
# Note: Only works with ReactActivity and should not be used with custom Activity.
edgeToEdgeEnabled=false
edgeToEdgeEnabled=true

View File

@@ -127,7 +127,7 @@
"reasons": [
"rncoreAutolinking"
],
"hash": "d5fbbb93fc0a3226beb606c7cee71462cc407f3b"
"hash": "813b952f54fc797f88b87923ff1556f2b08b6724"
},
{
"type": "dir",
@@ -244,7 +244,7 @@
"hash": "572c60c8414e2294ee19e4cb40b65f1e8e3608e2"
}
],
"hash": "87f7f5e2ff3ace8ca5c2fd2ab6df5d0b7b513ed8"
"hash": "42f96edd8a64cfae93987ac32cacd202fda04a7e"
},
"android": {
"sources": [
@@ -374,7 +374,7 @@
"reasons": [
"rncoreAutolinking"
],
"hash": "d5fbbb93fc0a3226beb606c7cee71462cc407f3b"
"hash": "813b952f54fc797f88b87923ff1556f2b08b6724"
},
{
"type": "dir",
@@ -491,6 +491,6 @@
"hash": "572c60c8414e2294ee19e4cb40b65f1e8e3608e2"
}
],
"hash": "87f7f5e2ff3ace8ca5c2fd2ab6df5d0b7b513ed8"
"hash": "42f96edd8a64cfae93987ac32cacd202fda04a7e"
}
}

View File

@@ -89,7 +89,7 @@
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>HOT_UPDATER_FINGERPRINT_HASH</key>
<string>87f7f5e2ff3ace8ca5c2fd2ab6df5d0b7b513ed8</string>
<string>42f96edd8a64cfae93987ac32cacd202fda04a7e</string>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>

View File

@@ -1,6 +1,6 @@
{
"name": "minibits_wallet",
"version": "0.4.3-beta.1",
"version": "0.4.3-beta.2",
"private": true,
"scripts": {
"android:clean": "cd android && ./gradlew clean",

View File

@@ -31,7 +31,7 @@ import { InFlightRequest, Mint } from './Mint'
import { getRootStore } from './helpers/getRootStore'
import { Transaction } from './Transaction'
// r
// refresh
/*
Not persisted, in-memory only model of the cashu-ts wallet instances and wallet keys persisted in the device secure store.

View File

@@ -35,7 +35,7 @@ import { TransactionStatus } from '../models/Transaction'
import { maxTransactionsInHistory } from '../models/TransactionsStore'
import { StaticScreenProps, useNavigation } from '@react-navigation/native'
//
// refresh
type Props = StaticScreenProps<undefined>