mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
* add kotlin debug app * add specs * first kmp sdk version * add deploy script * save working nfc implementation * save demo app flow wip * agent feedback * show viewfinder on mrz * save working scan * add kotlin formatting * remove mrz overlay * fix expiry date * add feedback to mrz san * save improved nfc scanning * save wip * save gitignore and md state * add logging and error handling. get iOS demo app working * format * add swift formatting * enable iOS camera * save ios mrz implementation * nfc scanning works * final optimizations * add tests * fixes * better linting * agent feedback * bug fixes * formatting * agent feedback * fix app breaking on run * consolidate kotlin and swift clean up commands * fix pipeline by installing swiftlint * fix blurry scanning * fix ci --------- Co-authored-by: turnoffthiscomputer <colin.remi07@gmail.com>
16 lines
561 B
JSON
16 lines
561 B
JSON
{
|
|
"name": "@selfxyz/kmp-test-app",
|
|
"version": "0.0.1-alpha",
|
|
"private": true,
|
|
"scripts": {
|
|
"android": "./scripts/run-android.sh",
|
|
"android:build": "./gradlew :composeApp:assembleDebug",
|
|
"clean": "./gradlew clean",
|
|
"format": "./gradlew ktlintFormat && cd iosApp && swiftlint --fix --format",
|
|
"ios:build": "./gradlew :composeApp:compileKotlinIosSimulatorArm64",
|
|
"ios:open": "open iosApp/iosApp.xcworkspace",
|
|
"lint": "./gradlew ktlintCheck && cd iosApp && swiftlint",
|
|
"test": "./gradlew :composeApp:testDebugUnitTest"
|
|
}
|
|
}
|