setup project

This commit is contained in:
Eric Ampire
2025-10-08 11:13:18 -04:00
commit 743eb3dddb
18 changed files with 870 additions and 0 deletions
@@ -0,0 +1,15 @@
package com.brp.tools.adbkey
import androidx.compose.ui.window.Window
import androidx.compose.ui.window.application
fun main() = application {
// Initialize Koin once at app start
Window(
onCloseRequest = ::exitApplication,
title = "adbkey",
content = {
App()
}
)
}