mill.javalib.android

Members list

Type members

Classlikes

@Scaladoc(value = "/**\n * A Trait for Android App Bundle Creation\n */")

A Trait for Android App Bundle Creation

A Trait for Android App Bundle Creation

Attributes

Source
AndroidAppBundle.scala
Supertypes
trait JavaModule
trait RunModule
trait TaskModule
trait BspModule
trait Module
trait Wrapper
class BaseClass
trait Cacher
trait Cacher
class Object
trait Matchable
class Any
Show all
@Scaladoc(value = "/**\n * Trait for building Android applications using the Mill build tool.\n *\n * This trait defines all the necessary steps for building an Android app from Java sources,\n * integrating both Android-specific tasks and generic Java tasks by extending the\n * [[AndroidSdkModule]] (for Android SDK interactions) and [[JavaModule]] (for standard Java tasks).\n *\n * It provides a structured way to handle various steps in the Android app build process,\n * including compiling Java sources, creating DEX files, generating resources, packaging\n * APKs, optimizing, and signing APKs.\n *\n * [[https://developer.android.com/studio Android Studio Documentation]]\n */")

Trait for building Android applications using the Mill build tool.

Trait for building Android applications using the Mill build tool.

This trait defines all the necessary steps for building an Android app from Java sources, integrating both Android-specific tasks and generic Java tasks by extending the AndroidSdkModule (for Android SDK interactions) and JavaModule (for standard Java tasks).

It provides a structured way to handle various steps in the Android app build process, including compiling Java sources, creating DEX files, generating resources, packaging APKs, optimizing, and signing APKs.

Android Studio Documentation

Attributes

Source
AndroidAppModule.scala
Supertypes
trait JavaModule
trait RunModule
trait TaskModule
trait BspModule
trait Module
trait Wrapper
class BaseClass
trait Cacher
trait Cacher
class Object
trait Matchable
class Any
Show all
Known subtypes

Attributes

Source
AndroidLibModule.scala
Supertypes
trait JavaModule
trait RunModule
trait TaskModule
trait BspModule
trait Module
trait Wrapper
class BaseClass
trait Cacher
trait Cacher
class Object
trait Matchable
class Any
Show all
Known subtypes
@Scaladoc(value = "/**\n * Enumeration for Android Lint report formats, providing predefined formats\n * with corresponding flags and file extensions. Includes utility methods\n * for implicit conversions, serialization, and retrieving all supported formats.\n */")
object AndroidLintReportFormat extends Enumeration

Enumeration for Android Lint report formats, providing predefined formats with corresponding flags and file extensions. Includes utility methods for implicit conversions, serialization, and retrieving all supported formats.

Enumeration for Android Lint report formats, providing predefined formats with corresponding flags and file extensions. Includes utility methods for implicit conversions, serialization, and retrieving all supported formats.

Attributes

Source
AndroidAppModule.scala
Supertypes
class Enumeration
trait Serializable
class Object
trait Matchable
class Any
Self type
trait AndroidModule extends JavaModule

Attributes

Source
AndroidModule.scala
Supertypes
trait JavaModule
trait RunModule
trait TaskModule
trait BspModule
trait Module
trait Wrapper
class BaseClass
trait Cacher
trait Cacher
class Object
trait Matchable
class Any
Show all
Known subtypes
@Scaladoc(value = "/**\n * Trait for managing the Android SDK in a Mill build system.\n *\n * This trait offers utility methods for automating the download, installation,\n * and configuration of the Android SDK, build tools, and other essential\n * components necessary for Android development. It facilitates setting up\n * an Android development environment, streamlining the process of building,\n * compiling, and packaging Android applications in a Mill project.\n *\n * For more information, refer to the official Android\n * [[https://developer.android.com/studio documentation]].\n */")
trait AndroidSdkModule extends Module

Trait for managing the Android SDK in a Mill build system.

Trait for managing the Android SDK in a Mill build system.

This trait offers utility methods for automating the download, installation, and configuration of the Android SDK, build tools, and other essential components necessary for Android development. It facilitates setting up an Android development environment, streamlining the process of building, compiling, and packaging Android applications in a Mill project.

For more information, refer to the official Android documentation.

Attributes

Companion
object
Source
AndroidSdkModule.scala
Supertypes
trait Module
trait Wrapper
class BaseClass
trait Cacher
trait Cacher
class Object
trait Matchable
class Any
Show all

Attributes

Companion
trait
Source
AndroidSdkModule.scala
Supertypes
class Object
trait Matchable
class Any
Self type

Attributes

Companion
object
Source
AndroidTestModule.scala
Supertypes
trait TestModule
trait TaskModule
trait RunModule
trait BspModule
trait Module
trait Wrapper
class BaseClass
trait Cacher
trait Cacher
class Object
trait Matchable
class Any
Show all
Known subtypes

Attributes

Companion
trait
Source
AndroidTestModule.scala
Supertypes
class Object
trait Matchable
class Any
Self type
@Scaladoc(value = "/**\n * Descriptor of unpacked `.aar` dependency structure.\n * @param name dependency name\n * @param classesJar path to the classes.jar\n * @param proguardRules path to the proguard rules\n * @param resources path to the res folder\n * @param manifest path to the AndroidManifest.xml\n * @param lintJar path to the lint.jar file\n * @param metaInf path to the META-INF folder\n * @param nativeLibs path to the native .so libraries root folder\n * @param baselineProfile path to the baseline profile file\n * @param rTxtFile path to the R.txt\n * @param publicResFile path to public.txt file\n */")
case class UnpackedDep(name: String, classesJar: Option[PathRef], proguardRules: Option[PathRef], resources: Option[PathRef], manifest: Option[PathRef], lintJar: Option[PathRef], metaInf: Option[PathRef], nativeLibs: Option[PathRef], baselineProfile: Option[PathRef], rTxtFile: Option[PathRef], publicResFile: Option[PathRef])

Descriptor of unpacked .aar dependency structure.

Descriptor of unpacked .aar dependency structure.

Value parameters

baselineProfile

path to the baseline profile file

classesJar

path to the classes.jar

lintJar

path to the lint.jar file

manifest

path to the AndroidManifest.xml

metaInf

path to the META-INF folder

name

dependency name

nativeLibs

path to the native .so libraries root folder

proguardRules

path to the proguard rules

publicResFile

path to public.txt file

rTxtFile

path to the R.txt

resources

path to the res folder

Attributes

Companion
object
Source
AndroidAppModule.scala
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
object UnpackedDep

Attributes

Companion
class
Source
AndroidAppModule.scala
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type