:rocket: PlatformTools Update: v0.2.0 :rocket: Hey...
# feed
u
🚀 PlatformTools Update: v0.2.0 🚀 Hey Kotlin developers! 🎉 We’ve just released PlatformTools v0.2.0, and here’s the highlight: 🆕 New Module: Permission Handler (Android Only) Easily manage Android permissions like Notifications, Location, Camera, and more with intuitive APIs:
Copy code
if (hasNotificationPermission()) {
        println("Notification permission already granted.")
    } else {
        requestNotificationPermission(
            onGranted = {
                println("Notification permission granted.")
            },
            onDenied = {
                println("Notification permission denied.")
            }
        )
    }
Improvements Across Modules Several enhancements have been made to existing modules. For full details, check out the release notes: Release Notes 📖 Revamped Documentation The README is completely rewritten for better clarity and usability. Check it out here: GitHub Repository Happy coding! 🚀