@readyio/react-native-wallet 0.1.54 → 0.1.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -112,10 +112,10 @@ public class ReadyWalletActivity extends ReactActivity implements DefaultHardwar
|
|
|
112
112
|
|
|
113
113
|
// Register the receiver
|
|
114
114
|
if (Build.VERSION.SDK_INT >= 33 && getApplicationInfo().targetSdkVersion >= 33) {
|
|
115
|
-
registerReceiver(myReceiver, new IntentFilter(BROASCAST_EVENT), Context.
|
|
115
|
+
registerReceiver(myReceiver, new IntentFilter(BROASCAST_EVENT), Context.RECEIVER_EXPORTED);
|
|
116
116
|
} else {
|
|
117
117
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
|
|
118
|
-
registerReceiver(myReceiver, new IntentFilter(BROASCAST_EVENT), Context.
|
|
118
|
+
registerReceiver(myReceiver, new IntentFilter(BROASCAST_EVENT), Context.RECEIVER_EXPORTED);
|
|
119
119
|
} else {
|
|
120
120
|
registerReceiver(myReceiver, new IntentFilter(BROASCAST_EVENT));
|
|
121
121
|
}
|
package/package.json
CHANGED