aves_mio1/lib/main_play_test_editor.dart
FabioMich66 19a982ede6
Some checks are pending
Quality check / Flutter analysis (push) Waiting to run
Quality check / CodeQL analysis (java-kotlin) (push) Waiting to run
first commit
2026-03-05 15:51:30 +01:00

17 lines
743 B
Dart

import 'package:aves/app_flavor.dart';
import 'package:aves/main_common.dart';
import 'package:aves/model/app/intent.dart';
// https://developer.android.com/studio/command-line/adb.html#IntentSpec
// adb shell am start -n deckers.thibault.aves.debug/deckers.thibault.aves.MainActivity -a android.intent.action.EDIT -d content://media/external/images/media/183128 -t image/*
@pragma('vm:entry-point')
void main() => mainCommon(
AppFlavor.play,
debugIntentData: {
IntentDataKeys.action: IntentActions.edit,
IntentDataKeys.mimeType: 'image/*',
IntentDataKeys.uri: 'content://media/external/images/media/1000064996', // landscape
// IntentDataKeys.uri: 'content://media/external/images/media/1000064754', // portrait
},
);