@capacitor/cli 6.0.0-beta.1 → 6.0.0-beta.2
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/assets/android-template.tar.gz +0 -0
- package/assets/capacitor-cordova-android-plugins.tar.gz +0 -0
- package/assets/capacitor-cordova-ios-plugins.tar.gz +0 -0
- package/assets/ios-pods-template.tar.gz +0 -0
- package/assets/ios-spm-template.tar.gz +0 -0
- package/dist/tasks/migrate.js +2 -5
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/tasks/migrate.js
CHANGED
|
@@ -176,9 +176,9 @@ async function migrateCommand(config, noprompt, packagemanager) {
|
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
178
|
const pluginVariables = {
|
|
179
|
-
firebaseMessagingVersion: '23.
|
|
179
|
+
firebaseMessagingVersion: '23.3.1',
|
|
180
180
|
playServicesLocationVersion: '21.0.1',
|
|
181
|
-
androidxBrowserVersion: '1.
|
|
181
|
+
androidxBrowserVersion: '1.7.0',
|
|
182
182
|
androidxMaterialVersion: '1.10.0',
|
|
183
183
|
androidxExifInterfaceVersion: '1.3.6',
|
|
184
184
|
androidxCoreKTXVersion: '1.12.0',
|
|
@@ -427,9 +427,6 @@ async function movePackageFromManifestToBuildGradle(manifestFilename, buildGradl
|
|
|
427
427
|
(0, utils_fs_1.writeFileSync)(buildGradleFilename, buildGradleReplaced, 'utf-8');
|
|
428
428
|
}
|
|
429
429
|
async function updateBuildGradle(filename, variablesAndClasspaths) {
|
|
430
|
-
// In build.gradle add dependencies:
|
|
431
|
-
// classpath 'com.android.tools.build:gradle:8.2.0-rc02'
|
|
432
|
-
// classpath 'com.google.gms:google-services:4.4.0'
|
|
433
430
|
const txt = readFile(filename);
|
|
434
431
|
if (!txt) {
|
|
435
432
|
return;
|
package/package.json
CHANGED