@capacitor/cli 3.4.3 → 4.0.1-alpha.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/CHANGELOG.md +2 -16
- 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-template.tar.gz +0 -0
- package/dist/android/update.js +1 -44
- package/dist/config.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,23 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [
|
|
6
|
+
## [4.0.1-alpha.0](https://github.com/ionic-team/capacitor/compare/3.4.1...4.0.1-alpha.0) (2022-03-25)
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* **cli:** avoid srcFiles is not iterable on kotlinNeededCheck ([#5481](https://github.com/ionic-team/capacitor/issues/5481)) ([3c2b579](https://github.com/ionic-team/capacitor/commit/3c2b579c6edb1fc69d85689b268eb92067b7821b))
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [3.4.2](https://github.com/ionic-team/capacitor/compare/3.4.1...3.4.2) (2022-03-03)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
### Bug Fixes
|
|
21
|
-
|
|
22
|
-
* **android:** compatibility with cordova kotlin plugins ([#5438](https://github.com/ionic-team/capacitor/issues/5438)) ([55bf004](https://github.com/ionic-team/capacitor/commit/55bf004897b3feb280ab6b6575d2a2c1a0a183e2))
|
|
8
|
+
**Note:** Version bump only for package @capacitor/cli
|
|
23
9
|
|
|
24
10
|
|
|
25
11
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/android/update.js
CHANGED
|
@@ -166,11 +166,7 @@ if (hasProperty('postBuildExtras')) {
|
|
|
166
166
|
}
|
|
167
167
|
exports.installGradlePlugins = installGradlePlugins;
|
|
168
168
|
async function handleCordovaPluginsGradle(config, cordovaPlugins) {
|
|
169
|
-
var _a, _b, _c;
|
|
170
169
|
const pluginsGradlePath = path_1.join(config.android.cordovaPluginsDirAbs, 'build.gradle');
|
|
171
|
-
const kotlinNeeded = await kotlinNeededCheck(config, cordovaPlugins);
|
|
172
|
-
const isKotlinVersionInVariablesGradle = (await getVariablesGradleFile(config)).includes('kotlin_version');
|
|
173
|
-
const kotlinVersionString = (_c = (_b = (_a = config.app.extConfig.cordova) === null || _a === void 0 ? void 0 : _a.preferences) === null || _b === void 0 ? void 0 : _b.GradlePluginKotlinVersion) !== null && _c !== void 0 ? _c : '1.4.32';
|
|
174
170
|
const frameworksArray = [];
|
|
175
171
|
let prefsArray = [];
|
|
176
172
|
const applyArray = [];
|
|
@@ -197,24 +193,10 @@ async function handleCordovaPluginsGradle(config, cordovaPlugins) {
|
|
|
197
193
|
})
|
|
198
194
|
.join('\n');
|
|
199
195
|
frameworkString = await replaceFrameworkVariables(config, prefsArray, frameworkString);
|
|
200
|
-
if (kotlinNeeded) {
|
|
201
|
-
frameworkString += `\n implementation "androidx.core:core-ktx:$androidxCoreKTXVersion"`;
|
|
202
|
-
frameworkString += `\n implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"`;
|
|
203
|
-
}
|
|
204
196
|
const applyString = applyArray.join('\n');
|
|
205
197
|
let buildGradle = await utils_fs_1.readFile(pluginsGradlePath, { encoding: 'utf-8' });
|
|
206
198
|
buildGradle = buildGradle.replace(/(SUB-PROJECT DEPENDENCIES START)[\s\S]*(\/\/ SUB-PROJECT DEPENDENCIES END)/, '$1\n' + frameworkString.concat('\n') + ' $2');
|
|
207
199
|
buildGradle = buildGradle.replace(/(PLUGIN GRADLE EXTENSIONS START)[\s\S]*(\/\/ PLUGIN GRADLE EXTENSIONS END)/, '$1\n' + applyString.concat('\n') + '$2');
|
|
208
|
-
if (kotlinNeeded) {
|
|
209
|
-
buildGradle = buildGradle.replace(/(buildscript\s{\n(\t|\s{4})repositories\s{\n((\t{2}|\s{8}).+\n)+(\t|\s{4})}\n(\t|\s{4})dependencies\s{\n(\t{2}|\s{8}).+)\n((\t|\s{4})}\n}\n)/, `$1\n classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:` +
|
|
210
|
-
(isKotlinVersionInVariablesGradle
|
|
211
|
-
? '$kotlin_version'
|
|
212
|
-
: kotlinVersionString) +
|
|
213
|
-
`"\n$8`);
|
|
214
|
-
buildGradle = buildGradle.replace(/(ext\s{)/, `$1\n kotlin_version = project.hasProperty('kotlin_version') ? rootProject.ext.kotlin_version : '${kotlinVersionString}'\n androidxCoreKTXVersion = project.hasProperty('androidxCoreKTXVersion') ? rootProject.ext.androidxCoreKTXVersion : '1.6.0'`);
|
|
215
|
-
buildGradle = buildGradle.replace(/(apply\splugin:\s'com\.android\.library')/, `$1\napply plugin: 'kotlin-android'`);
|
|
216
|
-
buildGradle = buildGradle.replace(/(compileOptions\s{\n((\t{2}|\s{8}).+\n)+(\t|\s{4})})\n(})/, `$1\n sourceSets {\n main.java.srcDirs += 'src/main/kotlin'\n }\n$5`);
|
|
217
|
-
}
|
|
218
200
|
await utils_fs_1.writeFile(pluginsGradlePath, buildGradle);
|
|
219
201
|
const cordovaVariables = `// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
|
|
220
202
|
ext {
|
|
@@ -226,27 +208,6 @@ ext {
|
|
|
226
208
|
await utils_fs_1.writeFile(path_1.join(config.android.cordovaPluginsDirAbs, 'cordova.variables.gradle'), cordovaVariables);
|
|
227
209
|
}
|
|
228
210
|
exports.handleCordovaPluginsGradle = handleCordovaPluginsGradle;
|
|
229
|
-
async function kotlinNeededCheck(config, cordovaPlugins) {
|
|
230
|
-
var _a, _b;
|
|
231
|
-
if (((_b = (_a = config.app.extConfig.cordova) === null || _a === void 0 ? void 0 : _a.preferences) === null || _b === void 0 ? void 0 : _b.GradlePluginKotlinEnabled) !==
|
|
232
|
-
'true') {
|
|
233
|
-
for (const plugin of cordovaPlugins) {
|
|
234
|
-
const androidPlatform = plugin_1.getPluginPlatform(plugin, platform);
|
|
235
|
-
const sourceFiles = androidPlatform['source-file'];
|
|
236
|
-
if (sourceFiles) {
|
|
237
|
-
for (const srcFile of sourceFiles) {
|
|
238
|
-
if (/^.*\.kt$/.test(srcFile['$'].src)) {
|
|
239
|
-
return true;
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
}
|
|
244
|
-
return false;
|
|
245
|
-
}
|
|
246
|
-
else {
|
|
247
|
-
return true;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
211
|
async function copyPluginsNativeFiles(config, cordovaPlugins) {
|
|
251
212
|
const pluginsPath = path_1.join(config.android.cordovaPluginsDirAbs, 'src', 'main');
|
|
252
213
|
for (const p of cordovaPlugins) {
|
|
@@ -296,16 +257,12 @@ async function getPluginsTask(config) {
|
|
|
296
257
|
return androidPlugins;
|
|
297
258
|
});
|
|
298
259
|
}
|
|
299
|
-
async function
|
|
260
|
+
async function replaceFrameworkVariables(config, prefsArray, frameworkString) {
|
|
300
261
|
const variablesFile = path_1.resolve(config.android.platformDirAbs, 'variables.gradle');
|
|
301
262
|
let variablesGradle = '';
|
|
302
263
|
if (await utils_fs_1.pathExists(variablesFile)) {
|
|
303
264
|
variablesGradle = await utils_fs_1.readFile(variablesFile, { encoding: 'utf-8' });
|
|
304
265
|
}
|
|
305
|
-
return variablesGradle;
|
|
306
|
-
}
|
|
307
|
-
async function replaceFrameworkVariables(config, prefsArray, frameworkString) {
|
|
308
|
-
const variablesGradle = await getVariablesGradleFile(config);
|
|
309
266
|
prefsArray.map((preference) => {
|
|
310
267
|
if (!variablesGradle.includes(preference.$.name)) {
|
|
311
268
|
frameworkString = frameworkString.replace(new RegExp(('$' + preference.$.name).replace('$', '\\$&'), 'g'), preference.$.default);
|
package/dist/config.js
CHANGED
|
@@ -171,7 +171,7 @@ async function loadAndroidConfig(rootDir, extConfig, cliConfig) {
|
|
|
171
171
|
const studioPath = promise_1.lazy(() => determineAndroidStudioPath(cliConfig.os));
|
|
172
172
|
return {
|
|
173
173
|
name,
|
|
174
|
-
minVersion: '
|
|
174
|
+
minVersion: '22',
|
|
175
175
|
studioPath,
|
|
176
176
|
platformDir,
|
|
177
177
|
platformDirAbs,
|
|
@@ -213,7 +213,7 @@ async function loadIOSConfig(rootDir, extConfig) {
|
|
|
213
213
|
const cordovaPluginsDir = 'capacitor-cordova-ios-plugins';
|
|
214
214
|
return {
|
|
215
215
|
name,
|
|
216
|
-
minVersion: '
|
|
216
|
+
minVersion: '13.0',
|
|
217
217
|
platformDir,
|
|
218
218
|
platformDirAbs,
|
|
219
219
|
scheme,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.1-alpha.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)",
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"publishConfig": {
|
|
86
86
|
"access": "public"
|
|
87
87
|
},
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "7faec09fd724a0af7436f3d30c83856b7bb5ce51"
|
|
89
89
|
}
|