Skip to content

Commit

Permalink
Merge pull request #1310 from dashpay/bugfix-read-images-permission (…
Browse files Browse the repository at this point in the history
…v10.3.1)

v10.3.1: remove read images permission and fix upgrade crash
  • Loading branch information
HashEngineering authored Sep 30, 2024
2 parents 2ab6b93 + 1c0f3fb commit b6af80a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions wallet/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
<!-- dangerous permissions -->
<uses-permission android:name="android.permission.CAMERA" /> <!-- group: CAMERA -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
Expand Down Expand Up @@ -415,10 +414,11 @@
android:name="de.schildbach.wallet.service.BlockchainServiceImpl"
android:exported="false"
android:foregroundServiceType="dataSync" />
<service

<!--service
android:name="de.schildbach.wallet.offline.AcceptBluetoothService"
android:exported="false"
android:foregroundServiceType="connectedDevice" />
android:foregroundServiceType="connectedDevice" /-->

<receiver
android:name="de.schildbach.wallet.service.BootstrapReceiver"
Expand Down
3 changes: 3 additions & 0 deletions wallet/CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Dash Wallet
v10.3.1
* Hot fix: prevent crash in some upgrade scenarios

v10.3.0
* Add CoinJoin Support
* Merge and hide DashPay functionality
Expand Down
4 changes: 2 additions & 2 deletions wallet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ android {
compileSdk 34
minSdkVersion 24
targetSdkVersion 34
versionCode project.hasProperty('versionCode') ? project.property('versionCode') as int : 103009
versionName project.hasProperty('versionName') ? project.property('versionName') : "10.3.0"
versionCode project.hasProperty('versionCode') ? project.property('versionCode') as int : 103010
versionName project.hasProperty('versionName') ? project.property('versionName') : "10.3.1"
multiDexEnabled true
generatedDensities = ['hdpi', 'xhdpi']
vectorDrawables.useSupportLibrary = true
Expand Down
4 changes: 3 additions & 1 deletion wallet/src/de/schildbach/wallet/WalletApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,9 @@ public void finalizeInitialization() {
createNotificationChannels();
}

initPlatform();
if (Constants.SUPPORTS_PLATFORM) {
initPlatform();
}
initUphold();
initCoinbase();
initDashDirect();
Expand Down

0 comments on commit b6af80a

Please sign in to comment.