You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- { pkgs ? import <nixpkgs> {}
- , pkgs_i686 ? import <nixpkgs> { system = "i686-linux"; }
- }:
-
- rec {
- composeAndroidPackages = import ./compose-android-packages.nix {
- inherit (pkgs) stdenv fetchurl requireFile makeWrapper unzip autoPatchelfHook;
- inherit pkgs pkgs_i686;
- };
-
- buildApp = import ./build-app.nix {
- inherit (pkgs) stdenv jdk ant gnumake gawk;
- inherit composeAndroidPackages;
- };
-
- emulateApp = import ./emulate-app.nix {
- inherit (pkgs) stdenv;
- inherit composeAndroidPackages;
- };
-
- androidPkgs_9_0 = composeAndroidPackages {
- platformVersions = [ "28" ];
- abiVersions = [ "x86" "x86_64"];
- };
- }
|