Unverified Commit 5b1c39ee authored by Alexandre Esteves's avatar Alexandre Esteves Committed by GitHub
Browse files

androidndkPkgs_29: init at 29.0.14206865 (plus androidenv autoupdate) (#450068)

parents 34b72c73 09404bd6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -55,4 +55,5 @@ in
lib.recurseIntoAttrs {
  "27" = makeNdkPkgs "27.0.12077973" pkgs.llvmPackages_18;
  "28" = makeNdkPkgs "28.0.13004108" pkgs.llvmPackages_19;
  "29" = makeNdkPkgs "29.0.14206865" pkgs.llvmPackages_21;
}
+3 −1
Original line number Diff line number Diff line
@@ -110,7 +110,9 @@ in
            1
          else
            coerceInt (parseVersion repo "platforms" minPlatformVersion);
        latestPlatformVersionInt = lib.max minPlatformVersionInt (coerceInt repo.latest.platforms);
        latestPlatformVersionInt = lib.max minPlatformVersionInt (
          coerceInt (lib.versions.major repo.latest.platforms)
        );
        firstPlatformVersionInt = lib.max minPlatformVersionInt (
          latestPlatformVersionInt - (lib.max 1 numLatestPlatformVersions) + 1
        );
+1546 −734

File changed.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -1715,6 +1715,7 @@ with pkgs;
  androidndkPkgs = androidndkPkgs_27;
  androidndkPkgs_27 = (callPackage ../development/androidndk-pkgs { })."27";
  androidndkPkgs_28 = (callPackage ../development/androidndk-pkgs { })."28";
  androidndkPkgs_29 = (callPackage ../development/androidndk-pkgs { })."29";

  androidsdk = androidenv.androidPkgs.androidsdk;