Skip to content

Commit

Permalink
* added capturing "zxing:" uri-s
Browse files Browse the repository at this point in the history
  • Loading branch information
k3b committed Jan 1, 2022
1 parent e1e214a commit a01281e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/android_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types: [created]

jobs:
build:
Expand Down
5 changes: 3 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ android {
// 3.0.2 (302) 2019-05-21 added action com.android.camera.action.CROP
// 4.0.0 (400) 2021-05-27. Dropped android-2.1-4.1 Support. Works with Android 4.2 and newer (including android-10)
// 4.0.1 (401) 2021-08-08. added android.media.action.VIDEO_CAPTURE IMAGE_CAPTURE IMAGE_CAPTURE_SECURE
versionCode 401
versionName "4.0.1"
// 4.0.2 (402) 2022-01-01. added capturing VIEW "zxing:...." uri-s
versionCode 402
versionName "4.0.2"
}
buildTypes {
release {
Expand Down
5 changes: 4 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<activity
android:name="uk.co.ashtonbrsc.intentexplode.Explode"
android:label="@string/app_name"
android:exported="true"
android:windowSoftInputMode="stateUnchanged" >

<!-- matching any given mime type -->
Expand Down Expand Up @@ -79,6 +80,7 @@
<data android:scheme="smsto" />
<data android:scheme="mms" />
<data android:scheme="mmsto" />
<data android:scheme="zxing" />
<data android:scheme="spotify" />
<data android:scheme="tel" />
<data android:scheme="voicemail" />
Expand Down Expand Up @@ -119,6 +121,7 @@
<data android:scheme="smsto" />
<data android:scheme="mms" />
<data android:scheme="mmsto" />
<data android:scheme="zxing" />
<data android:scheme="spotify" />
<data android:scheme="tel" />
<data android:scheme="voicemail" />
Expand Down Expand Up @@ -218,7 +221,7 @@
</intent-filter>

</activity>
<activity android:name="uk.co.ashtonbrsc.intentexplode.StartupActivity" >
<activity android:name="uk.co.ashtonbrsc.intentexplode.StartupActivity" android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/402.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* added capturing VIDEO_CAPTURE, IMAGE_CAPTURE(_SECURE), "zxing:" uri-s
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/403.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--- todo ---

0 comments on commit a01281e

Please sign in to comment.