callbundle_android 1.0.14
callbundle_android: ^1.0.14 copied to clipboard
Android implementation of the CallBundle federated Flutter plugin. Provides ConnectionService + TelecomManager + OEM-adaptive notifications.
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('CallBundle Android Example'),
),
body: const Center(
child: Text('CallBundle Android plugin loaded.'),
),
),
);
}
}