Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify added missing param #65 #66

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
with:
repository: eu-digital-green-certificates/dgca-app-core-android
ref: 0b843142389211104609ef188beeef0f293c5cd0
ref: main
path: dgca-app-core-android
- uses: actions/checkout@v2
with:
Expand All @@ -34,4 +34,4 @@ jobs:
- name: build
working-directory: ./dgca-verifier-app-android
run: |-
./gradlew --no-daemon build
./gradlew --no-daemon build
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import dgca.verifier.app.decoder.cose.VerificationCryptoService
import dgca.verifier.app.decoder.prefixvalidation.DefaultPrefixValidationService
import dgca.verifier.app.decoder.schema.DefaultSchemaValidator
import dgca.verifier.app.decoder.schema.SchemaValidator
import dgca.verifier.app.decoder.services.X509
import javax.inject.Singleton

@InstallIn(SingletonComponent::class)
Expand Down Expand Up @@ -73,5 +74,5 @@ object DecoderModule {

@Singleton
@Provides
fun provideCryptoService(): CryptoService = VerificationCryptoService()
fun provideCryptoService(): CryptoService = VerificationCryptoService(X509())
}
2 changes: 1 addition & 1 deletion azure-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resources:
- repository: dgca-app-core-android
type: github
name: eu-digital-green-certificates/dgca-app-core-android
ref: 'refs/tags/1.0.0'
ref: 'main'
endpoint: 'GitHub - it-eucert-team'

pool:
Expand Down