Skip to content

Commit

Permalink
Merge pull request #22 from OutSystems/fix/RMET-1007/fix-for-android-12
Browse files Browse the repository at this point in the history
fix: RMET-1007 - Added android:exported to manifest in plugin.xml
  • Loading branch information
nflsilva authored Sep 30, 2021
2 parents 9268ae5 + 4d22422 commit 98b7a42
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@
<hook type="after_prepare" src="hooks/androidSetToolsTag.js" />

<config-file target="AndroidManifest.xml" parent="application">
<activity android:name="com.outsystems.plugins.barcodescanner.CustomScannerActivity"
android:screenOrientation="fullSensor"
android:stateNotNeeded="true"
android:theme="@style/zxing_CaptureTheme"
android:windowSoftInputMode="stateAlwaysHidden"></activity>
<activity android:name="com.outsystems.plugins.barcodescanner.CustomScannerActivity"
android:screenOrientation="fullSensor"
android:stateNotNeeded="true"
android:exported="false"
android:theme="@style/zxing_CaptureTheme"
android:windowSoftInputMode="stateAlwaysHidden"></activity>
</config-file>

<config-file target="AndroidManifest.xml" parent="/manifest">
Expand Down

0 comments on commit 98b7a42

Please sign in to comment.