Skip to main content
Deno 2 is finally here 🎉️
Learn more

Android Pipeline

fluentci pipeline deno module deno compatibility

A ready-to-use CI/CD Pipeline for your Android projects.

🚀 Usage

Run the following command:

fluentci run android_pipeline

Or, if you want to use it as a template:

fluentci init -t android

This will create a .fluentci folder in your project.

Now you can run the pipeline with:

fluentci run .

Jobs

Job Description
lintDebug Lint your code
assembleDebug generate apk (debug)
debugTests Run your tests
assembleRelease generate apk (release)
bundleRelease generate aab (release)
assembleDebug(src: String!): String
assembleRelease(src: String!): String
bundleRelease(src: String!): String
debugTests(src: String!): String
lintDebug(src: String!): String

Programmatic usage

You can also use this pipeline programmatically:

import { lintDebug, assembleDebug, debugTests } from "https://pkg.fluentci.io/android_pipeline@v0.8.0/mod.ts";

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