mirror of
https://github.com/openfoodfacts/smooth-app.git
synced 2025-08-06 18:25:11 +08:00
17 lines
517 B
Dart
17 lines
517 B
Dart
import 'package:app_store_google_play/app_store_google.dart';
|
|
import 'package:scanner_ml_kit/scanner_ml_kit.dart';
|
|
import 'package:smooth_app/helpers/entry_points_helper.dart';
|
|
import 'package:smooth_app/main.dart';
|
|
|
|
/// Google Play version with:
|
|
/// - Barcode decoding algorithm: MLKit
|
|
/// - Google Play app review SDK
|
|
void main() {
|
|
launchSmoothApp(
|
|
barcodeScanner: const ScannerMLKit(),
|
|
appStore: GooglePlayStore(),
|
|
scannerLabel: ScannerLabel.MLKit,
|
|
storeLabel: StoreLabel.GooglePlayStore,
|
|
);
|
|
}
|