ringtone_set
Flutter package for easily setting device's default ringtone, notification sound and alarm.
Important
Works only on Android
Getting Started
Add these lines to AndroidManifest.xml.
<manifest>
...
<uses-permission android:name="android.permission.WRITE_SETTINGS"
tools:ignore="ProtectedPermissions" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
...
</manifest>
Set from assets
Put your sounds into <yourapp>/assets/ add them to your pubspec.yaml
flutter:
assets:
- assets/music.mp3
dependencies:
ringtone_set: ^0.0.2
Import the package
import 'package:ringtone_set/ringtone_set.dart';
Call the function
RingtoneSet.setRingtone("assets/music.mp3");
or
RingtoneSet.setNotification("assets/music.mp3");
or
RingtoneSet.setAlarm("assets/music.mp3");
Set from Network
You can also set ringtone from network URL:
RingtoneSet.setRingtoneFromNetwork("https://example.com/music.mp3");
or
RingtoneSet.setNotificationFromNetwork("https://example.com/music.mp3");
or
RingtoneSet.setAlarmFromNetwork("https://example.com/music.mp3");
Set from File
Finally, you can set ringtone from a File
object as well:
final File ringtoneFile = File("music.mp3");
RingtoneSet.setRingtoneFromFile(ringtoneFile);
RingtoneSet.setNotificationFromFile(ringtoneFile);
RingtoneSet.setAlarmFromFile(ringtoneFile);