auto_launcher 0.0.4 copy "auto_launcher: ^0.0.4" to clipboard
auto_launcher: ^0.0.4 copied to clipboard

A Flutter utility to automatically update the app's name, version, bundle identifiers, and launcher icon for Android and iOS. Ideal for CI/CD pipelines.

example/main.dart

import 'package:auto_launcher/auto_launcher.dart';

void main() {
  print('Running auto_launcher example...');

  // Example: Change the app name
  changeAppName("My Flutter App");

  // Example: Change bundle IDs
  changeBundleId("com.example.android", "com.example.ios");

  // Example: Load configuration (usually from pubspec.yaml)
  final config = loadAutoLauncherConfig();
  print('Loaded config: $config');

  // Example: Update version and build
  updateVersionAndBuild("1.0.0+1");

  print('auto_launcher example completed.');
}
1
likes
150
points
51
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter utility to automatically update the app's name, version, bundle identifiers, and launcher icon for Android and iOS. Ideal for CI/CD pipelines.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

archive, flutter, image, path, yaml

More

Packages that depend on auto_launcher