File tree 2 files changed +8
-1
lines changed
android/src/main/java/com/batch/batch_flutter
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## UPCOMING
2
+
3
+ ** Plugin**
4
+
5
+ * Android: Fixed an issue where Batch's "advanced device information" was disabled by default and not configurable using the Manifest.
6
+ * Android: Manifest configuration of the initial Do Not Disturb state now works as expected.
7
+
1
8
## 1.1.1
2
9
3
10
** Plugin**
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ synchronized void initFromManifest(@NonNull Context context) {
44
44
apiKey = manifestReader .readString (APIKEY_MANIFEST_KEY , null );
45
45
canUseAdvertisingID = manifestReader .readBoolean (GAID_MANIFEST_KEY , true );
46
46
canUseAdvancedDeviceInformation = manifestReader .readBoolean (ADVANCED_INFO_MANIFEST_KEY , true );
47
- canUseAdvancedDeviceInformation = manifestReader .readBoolean (INITIAL_DND_STATE_MANIFEST_KEY , false );
47
+ initialDoNotDisturbState = manifestReader .readBoolean (INITIAL_DND_STATE_MANIFEST_KEY , false );
48
48
}
49
49
50
50
boolean hasAPIKey () {
You can’t perform that action at this time.
0 commit comments