Skip to content

Commit

Permalink
1.04
Browse files Browse the repository at this point in the history
  • Loading branch information
diegocidm4 committed Jan 21, 2025
1 parent 8273320 commit 6fd37e9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 15 deletions.
33 changes: 19 additions & 14 deletions ios/Sources/idniecapPlugin/idniecap.swift
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ import CoreNFC

let passportUtils = PassportUtils()
passportReader?.passiveAuthenticationUsesOpenSSL = true

var lecturaCompleta = false;

var datosDNIe: DatosDNIe? = nil
Expand Down Expand Up @@ -136,9 +135,10 @@ import CoreNFC
lecturaCompleta = true
})

var txt = ""
while(!lecturaCompleta)
{

txt = txt + "-"
}


Expand Down Expand Up @@ -461,10 +461,11 @@ import CoreNFC
})
}

while(!lecturaCompleta)
{

}
var txt = ""
while(!lecturaCompleta)
{
txt = txt + "-"
}

var json: [String: Any] = [:]
json["firma"] = firma
Expand Down Expand Up @@ -508,10 +509,12 @@ import CoreNFC
lecturaCompleta = true
})
}
while(!lecturaCompleta)
{

}

var txt = ""
while(!lecturaCompleta)
{
txt = txt + "-"
}

var json: [String: Any] = [:]
json["firma"] = firma
Expand Down Expand Up @@ -584,10 +587,12 @@ import CoreNFC
})

}
while(!lecturaCompleta)
{

}

var txt = ""
while(!lecturaCompleta)
{
txt = txt + "-"
}

var json: [String: Any] = [:]
json["firma"] = firma
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "idniecap",
"version": "1.0.3",
"version": "1.0.4",
"description": "Librería para el uso del DNIe en ionic. Disponible para android e iOS.",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
Expand Down

0 comments on commit 6fd37e9

Please sign in to comment.