Skip to content

Commit

Permalink
Merge branch 'android-link'
Browse files Browse the repository at this point in the history
  • Loading branch information
Beerosagos committed Oct 11, 2022
2 parents 4e4e78d + cf5b493 commit 1e1e2c6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,7 @@
- Add attestation check on device setting
- Fix unsufficient gas funds error message on erc20 transactions
- Display trailing zeroes for BTC/LTC amount formatting
- Fix broken links on Android 11+

## 4.34.0
- Bundle BitBox02 firmware version v9.12.0
Expand Down
14 changes: 14 additions & 0 deletions frontends/android/BitBoxApp/app/src/main/AndroidManifest.xml
Expand Up @@ -11,6 +11,20 @@
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />

<!-- to allow external links and mailto -->
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="mailto" />
</intent>
</queries>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
Expand Down
2 changes: 1 addition & 1 deletion frontends/android/BitBoxApp/build.gradle
Expand Up @@ -7,7 +7,7 @@ buildscript {

}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.android.tools.build:gradle:3.5.4'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down

0 comments on commit 1e1e2c6

Please sign in to comment.