A high-performance Kotlin Multiplatform SDK for reading Vietnamese Citizen ID cards (CCCD) and credit cards via NFC technology. Built for enterprise-grade security and seamless cross-platform integration.
- β High-speed NFC reading capabilities
- π Enterprise-grade security protocols
- π± Cross-platform native performance
- π‘οΈ Advanced data protection
We support all major credit card types with high-security standards:
Card Type | Features |
---|---|
π Visa | β Supported |
π¦ MasterCard | β Supported |
β¬ American Express | β Supported |
π₯ JCB | β Supported |
π§ Discover | β Supported |
π¨ UnionPay | β Supported |
Platform | Specification |
---|---|
π± Android | API 21+, NFC capability |
π iOS | iOS 13.0+, NFC capability |
π» Kotlin | Version 1.9.x or higher |
dependencies {
implementation("com.ic.tech:id-card-reader:1.0.0")
}
dependencies: [
.package(url: "https://github.com/VanHoai/id-card-reader", from: "1.0.0")
]
class IdCardReader {
private val reader = CardReader.getInstance()
suspend fun readIdCard(): Result<IdCardData> {
return try {
val cardData = reader.readCard()
Result.success(cardData)
} catch (e: Exception) {
Result.failure(e)
}
}
}
class CreditCardProcessor {
private val reader = CreditCardReader.getInstance()
fun processCard(onComplete: (CardResult) -> Unit) {
reader.readCard { result ->
when (result) {
is Success -> onComplete(
CardResult(
cardType = result.type,
maskedNumber = result.maskedPan
)
)
is Error -> onComplete(CardResult.Error(result.message))
}
}
}
}
- π‘οΈ End-to-end encryption
- π Secure element integration
- π Advanced key management
- π¦ Encrypted storage
- π« PCI DSS compliance
- β‘ Card reading speed: < 2 seconds
- π Success rate: 99.9%
- π Concurrent operations: Unlimited
- π Cross-platform compatibility: 100%
Comprehensive documentation is available at:
- π API Reference
- π Integration Guide
- π Sample Projects
- π§ Enterprise Support: support@your-domain.com
- π¬ Discord Community: Join
- π GitHub Issues: Report Here
MIT License
Copyright (c) 2024 Your Company
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files.