Skip to main content

Android

Running the pre-built Android pipeline directly

Run the following command to run the pre-built Android pipeline without having to initialize a project:

fluentci run android_pipeline

Add Android Pipeline to your project

Run the following command to add Android pipeline to your project:

fluentci init -t android

This will create a .fluentci directory in your project, feel free to customize the pipeline for your needs. You can then run the following command to start the pipeline:

fluentci run .

Jobs

JobDescription
lintDebugLint your code
assembleDebuggenerate apk (debug)
debugTestsRun your tests
assembleReleasegenerate apk (release)
bundleReleasegenerate aab (release)

Programmatic usage

You can also use this pipeline programmatically:

import { lintDebug, assembleDebug, debugTests } from "https://pkg.fluentci.io/[email protected]/mod.ts";


await lintDebug();
await assembleDebug();
await debugTests();