@capacitor/android 7.4.1 → 7.4.2-nightly-20250707T150535.0
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.
package/capacitor/src/main/java/com/getcapacitor/plugin/util/CapacitorHttpUrlConnection.java
CHANGED
|
@@ -248,7 +248,7 @@ public class CapacitorHttpUrlConnection implements ICapacitorHttpUrlConnection {
|
|
|
248
248
|
while (keys.hasNext()) {
|
|
249
249
|
String key = keys.next();
|
|
250
250
|
Object d = object.get(key);
|
|
251
|
-
os.writeBytes(key);
|
|
251
|
+
os.writeBytes(URLEncoder.encode(key, "UTF-8"));
|
|
252
252
|
os.writeBytes("=");
|
|
253
253
|
os.writeBytes(URLEncoder.encode(d.toString(), "UTF-8"));
|
|
254
254
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/android",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.2-nightly-20250707T150535.0",
|
|
4
4
|
"description": "Capacitor: Cross-platform apps with JavaScript and the web",
|
|
5
5
|
"homepage": "https://capacitorjs.com",
|
|
6
6
|
"author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"verify": "./gradlew clean lint build test -b capacitor/build.gradle"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@capacitor/core": "^7.4.0"
|
|
26
|
+
"@capacitor/core": "^7.4.0-nightly-20250707T150535.0"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|