@akanjs/devkit 2.4.0-rc.6 → 2.4.0-rc.7

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.
@@ -4,6 +4,7 @@ import os from "node:os";
4
4
  import path from "node:path";
5
5
  import type { AkanMobileTargetConfig } from "./akanConfig";
6
6
  import {
7
+ ANDROID_MIN_SDK_VERSION,
7
8
  assertJsonSerializable,
8
9
  buildIosNativeRunCommand,
9
10
  classifyIosRunFailure,
@@ -14,6 +15,7 @@ import {
14
15
  materializeCapacitorConfig,
15
16
  parseDevicectlDevices,
16
17
  parseSimctlDevices,
18
+ raiseGradleMinSdkVersion,
17
19
  rootCapacitorConfigFilenames,
18
20
  sanitizeIosNativeRunEnv,
19
21
  writeRootCapacitorConfig,
@@ -255,3 +257,24 @@ describe("Android signing diagnostics", () => {
255
257
  ]);
256
258
  });
257
259
  });
260
+
261
+ describe("raiseGradleMinSdkVersion", () => {
262
+ test("raises the scaffold minSdkVersion to the bundled-plugin floor, preserving formatting", () => {
263
+ const scaffold = "ext {\n minSdkVersion = 24\n compileSdkVersion = 35\n}\n";
264
+ expect(raiseGradleMinSdkVersion(scaffold)).toBe(
265
+ `ext {\n minSdkVersion = ${ANDROID_MIN_SDK_VERSION}\n compileSdkVersion = 35\n}\n`,
266
+ );
267
+ });
268
+
269
+ test("returns null when nothing needs changing", () => {
270
+ // Already at the floor, already above it, and no assignment present.
271
+ expect(raiseGradleMinSdkVersion(`ext {\n minSdkVersion = ${ANDROID_MIN_SDK_VERSION}\n}\n`)).toBeNull();
272
+ expect(raiseGradleMinSdkVersion("ext {\n minSdkVersion = 34\n}\n")).toBeNull();
273
+ expect(raiseGradleMinSdkVersion("ext {\n compileSdkVersion = 35\n}\n")).toBeNull();
274
+ });
275
+
276
+ test("honors an explicit floor and leaves higher user values untouched", () => {
277
+ expect(raiseGradleMinSdkVersion("minSdkVersion = 21", 23)).toBe("minSdkVersion = 23");
278
+ expect(raiseGradleMinSdkVersion("minSdkVersion = 28", 26)).toBeNull();
279
+ });
280
+ });
package/capacitorApp.ts CHANGED
@@ -203,7 +203,7 @@ export function parseSimctlDevices(output: string): IosRunTarget[] {
203
203
  const json = JSON.parse(output) as { devices?: Record<string, unknown[]> };
204
204
  const devices = json.devices ?? {};
205
205
  return Object.values(devices)
206
- .flatMap((runtimeDevices) => runtimeDevices)
206
+ .flat()
207
207
  .filter(isRecord)
208
208
  .flatMap((device) => {
209
209
  const id = firstString(device.udid, device.UDID, device.identifier);
@@ -424,6 +424,15 @@ export function getAdbDeviceStateIssues(output: string) {
424
424
  });
425
425
  }
426
426
 
427
+ export const ANDROID_MIN_SDK_VERSION = 26;
428
+ export function raiseGradleMinSdkVersion(content: string, floor: number = ANDROID_MIN_SDK_VERSION): string | null {
429
+ const match = content.match(/minSdkVersion\s*=\s*(\d+)/);
430
+ if (!match?.[1]) return null;
431
+ const current = Number.parseInt(match[1], 10);
432
+ if (Number.isNaN(current) || current >= floor) return null;
433
+ return content.replace(/(minSdkVersion\s*=\s*)\d+/, `$1${floor}`);
434
+ }
435
+
427
436
  const mergeAllowNavigation = (configured: unknown, localIp: string | undefined) => {
428
437
  const values = Array.isArray(configured)
429
438
  ? configured.filter((value): value is string => typeof value === "string")
@@ -766,6 +775,7 @@ export class CapacitorApp {
766
775
  await this.#prepareTargetAssets();
767
776
  await this.#prepareExternalFiles("android");
768
777
  await this.#applyAndroidMetadata();
778
+ await this.#applyAndroidMinSdkVersion();
769
779
  await this.#applyPermissions({ operation, env });
770
780
  await this.#applyDeepLinks("android", { operation, env });
771
781
  await this.project.commit();
@@ -992,6 +1002,14 @@ export class CapacitorApp {
992
1002
  await this.project.android.setVersionCode(this.target.buildNum);
993
1003
  await this.project.android.setAppName(this.target.appName);
994
1004
  }
1005
+ async #applyAndroidMinSdkVersion() {
1006
+ const variablesGradlePath = path.join(this.app.cwdPath, this.androidRootPath, "variables.gradle");
1007
+ if (!(await Bun.file(variablesGradlePath).exists())) return;
1008
+ const updated = raiseGradleMinSdkVersion(await Bun.file(variablesGradlePath).text());
1009
+ if (!updated) return;
1010
+ await writeFile(variablesGradlePath, updated);
1011
+ this.app.verbose(`Raised Android minSdkVersion to ${ANDROID_MIN_SDK_VERSION} in variables.gradle`);
1012
+ }
995
1013
  async #applyPermissions({ operation, env }: Pick<RunConfig, "operation" | "env">) {
996
1014
  const plugins = await this.app.collectPlugins();
997
1015
  const nativePlugins = new Map<MobilePermission, AkanPlugin[]>();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "2.4.0-rc.6",
3
+ "version": "2.4.0-rc.7",
4
4
  "sourceType": "module",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -32,7 +32,7 @@
32
32
  "@langchain/openai": "^1.4.6",
33
33
  "@tailwindcss/node": "^4.3.0",
34
34
  "@trapezedev/project": "^7.1.4",
35
- "akanjs": "2.4.0-rc.6",
35
+ "akanjs": "2.4.0-rc.7",
36
36
  "chalk": "^5.6.2",
37
37
  "commander": "^14.0.3",
38
38
  "daisyui": "5.5.23",