Skip to content

Actinis/keyboard

Repository files navigation

Actinis Remote Keyboard

Maven Central Version

A custom keyboard view library designed for internal use within the Actinis Remote project.

Built using Compose Multiplatform.

Supports Android, iOS and desktop (JVM).

Features in Progress

The following features are planned for future development:

  • Layout variants (e.g., email, URL)
  • Autocomplete support
  • Theming support
  • macOS support

Important Note

This project is an early-stage MVP and represents a small, non-critical component of a much larger MVP initiative.

As such, the current codebase prioritizes rapid prototyping over production-level quality. For now, you should not expect:

  • Perfect or polished architecture
  • Full adherence to SOLID principles or a clean architecture
  • Comprehensive documentation
  • RTL support
  • Unit or integration tests
  • Full portability (e.g., tablet support)
  • R8 rules

Contributions and feedback are welcome, but please keep the project's early-stage nature in mind.

Usage

Your app does not use Koin

Add to your AndroidManifest.xml:

<provider android:authorities="${applicationId}.androidx-startup" android:exported="false"
    android:name="androidx.startup.InitializationProvider" tools:node="merge">
    <meta-data android:name="io.actinis.remote.keyboard.domain.initialization.AndroidLibraryInitializer"
        android:value="androidx.startup" />
</provider>

Your app uses Koin

Add keyboard modules to your modules:

val koinApp = startKoin {
    androidContext(context)
    modules(*keyboardModules)
}
koinApp.initializeKeyboard()

on iOS:

@main
struct iOSApp: App {
    init() {
        // Add this
        StartDiDarwinKt.startDi()
    }
    
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}

License

This project is licensed under the Apache License 2.0. You may use, modify, and distribute the code, provided you comply with the terms of the license. See the LICENSE file for more details.

About

KMP keyboard for Actinis Remote

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages