@aigens/aigens-sdk-core 0.0.33 → 0.0.34

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.
@@ -253,6 +253,10 @@ public class WebContainerActivity extends BridgeActivity {
253
253
  this.bridge.getWebView().getSettings().setUseWideViewPort(true);
254
254
  this.bridge.getWebView().getSettings().setLoadWithOverviewMode(true);
255
255
 
256
+ // fixed font size
257
+ int rounded = (int) Math.round(1 * 100);
258
+ this.bridge.getWebView().getSettings().setTextZoom(rounded);
259
+
256
260
  // set http & https mixed
257
261
  this.bridge.getWebView().getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
258
262
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigens/aigens-sdk-core",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "description": "Aigens Order.Place Core Plugin",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",