-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* oid4vp integration Signed-off-by: Ryan Tate <[email protected]> * add sd jwt to credential pack Signed-off-by: Ryan Tate <[email protected]> * update latest mobile-sdk-rs snapshot Signed-off-by: Ryan Tate <[email protected]> * use startsWith for prefix instead of contains Signed-off-by: Ryan Tate <[email protected]> * OID4VP UI (#46) This implements the UI for the OID4VP flow and adds an error page * List VC Playground Credentials (#47) This refactors the credential display components to make them compatible with generic credential types and finishes the OID4VP and OID4VCI integrations. --------- Signed-off-by: Ryan Tate <[email protected]> Co-authored-by: Juliano Cézar Chagas Tavares <[email protected]>
- Loading branch information
1 parent
087dd1d
commit 0bd4364
Showing
46 changed files
with
2,812 additions
and
1,700 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,140 +1,136 @@ | ||
plugins { | ||
id("com.android.library") | ||
id("org.jetbrains.kotlin.android") | ||
`maven-publish` | ||
id("signing") | ||
id("com.gradleup.nmcp") | ||
id("com.android.library") | ||
id("org.jetbrains.kotlin.android") | ||
`maven-publish` | ||
id("signing") | ||
id("com.gradleup.nmcp") | ||
} | ||
|
||
publishing { | ||
repositories { | ||
maven { | ||
name = "GitHubPackages" | ||
url = uri("https://maven.pkg.github.com/spruceid/mobile-sdk-kt") | ||
credentials { | ||
username = System.getenv("GITHUB_ACTOR") | ||
password = System.getenv("GITHUB_TOKEN") | ||
} | ||
} | ||
} | ||
publications { | ||
create<MavenPublication>("debug") { | ||
groupId = "com.spruceid.mobile.sdk" | ||
artifactId = "mobilesdk" | ||
version = System.getenv("VERSION") | ||
|
||
afterEvaluate { from(components["release"]) } | ||
} | ||
// Creates a Maven publication called "release". | ||
create<MavenPublication>("release") { | ||
groupId = "com.spruceid.mobile.sdk" | ||
artifactId = "mobilesdk" | ||
version = System.getenv("VERSION") | ||
|
||
afterEvaluate { from(components["release"]) } | ||
|
||
pom { | ||
packaging = "aar" | ||
name.set("mobilesdk") | ||
description.set("Android SpruceID Mobile SDK") | ||
url.set("https://github.com/spruceid/mobile-sdk-kt") | ||
licenses { | ||
license { | ||
name.set("MIT License") | ||
url.set("https://opensource.org/license/mit/") | ||
} | ||
license { | ||
name.set("Apache License, Version 2.0") | ||
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") | ||
} | ||
} | ||
developers { | ||
developer { | ||
name.set("Spruce Systems, Inc.") | ||
email.set("[email protected]") | ||
} | ||
repositories { | ||
maven { | ||
name = "GitHubPackages" | ||
url = uri("https://maven.pkg.github.com/spruceid/mobile-sdk-kt") | ||
credentials { | ||
username = System.getenv("GITHUB_ACTOR") | ||
password = System.getenv("GITHUB_TOKEN") | ||
} | ||
} | ||
scm { | ||
url.set(pom.url.get()) | ||
connection.set("scm:git:${url.get()}.git") | ||
developerConnection.set("scm:git:${url.get()}.git") | ||
} | ||
publications { | ||
// Creates a Maven publication called "release". | ||
create<MavenPublication>("release") { | ||
groupId = "com.spruceid.mobile.sdk" | ||
artifactId = "mobilesdk" | ||
version = System.getenv("VERSION") | ||
|
||
afterEvaluate { from(components["release"]) } | ||
|
||
pom { | ||
packaging = "aar" | ||
name.set("mobilesdk") | ||
description.set("Android SpruceID Mobile SDK") | ||
url.set("https://github.com/spruceid/mobile-sdk-kt") | ||
licenses { | ||
license { | ||
name.set("MIT License") | ||
url.set("https://opensource.org/license/mit/") | ||
} | ||
license { | ||
name.set("Apache License, Version 2.0") | ||
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") | ||
} | ||
} | ||
developers { | ||
developer { | ||
name.set("Spruce Systems, Inc.") | ||
email.set("[email protected]") | ||
} | ||
} | ||
scm { | ||
url.set(pom.url.get()) | ||
connection.set("scm:git:${url.get()}.git") | ||
developerConnection.set("scm:git:${url.get()}.git") | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
signing { | ||
useGpgCmd() | ||
sign(publishing.publications["release"]) | ||
useGpgCmd() | ||
sign(publishing.publications["release"]) | ||
} | ||
|
||
nmcp { | ||
afterEvaluate { | ||
publish("release") { | ||
username = System.getenv("MAVEN_USERNAME") | ||
password = System.getenv("MAVEN_PASSWORD") | ||
publicationType = "AUTOMATIC" | ||
afterEvaluate { | ||
publish("release") { | ||
username = System.getenv("MAVEN_USERNAME") | ||
password = System.getenv("MAVEN_PASSWORD") | ||
publicationType = "AUTOMATIC" | ||
} | ||
} | ||
} | ||
} | ||
|
||
android { | ||
namespace = "com.spruceid.mobile.sdk" | ||
compileSdk = 35 | ||
|
||
defaultConfig { | ||
minSdk = 26 | ||
defaultConfig { | ||
minSdk = 26 | ||
|
||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles("consumer-rules.pro") | ||
} | ||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles("consumer-rules.pro") | ||
} | ||
|
||
buildTypes { | ||
release { | ||
isMinifyEnabled = false | ||
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") | ||
buildTypes { | ||
release { | ||
isMinifyEnabled = false | ||
proguardFiles( | ||
getDefaultProguardFile("proguard-android-optimize.txt"), | ||
"proguard-rules.pro" | ||
) | ||
} | ||
} | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
} | ||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
} | ||
|
||
kotlinOptions { jvmTarget = "1.8" } | ||
kotlinOptions { jvmTarget = "1.8" } | ||
|
||
buildFeatures { | ||
compose = true | ||
viewBinding = true | ||
} | ||
buildFeatures { | ||
compose = true | ||
viewBinding = true | ||
} | ||
|
||
composeOptions { kotlinCompilerExtensionVersion = "1.5.11" } | ||
composeOptions { kotlinCompilerExtensionVersion = "1.5.11" } | ||
|
||
publishing { | ||
singleVariant("release") { | ||
withSourcesJar() | ||
withJavadocJar() | ||
publishing { | ||
singleVariant("release") { | ||
withSourcesJar() | ||
withJavadocJar() | ||
} | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
api("com.spruceid.mobile.sdk.rs:mobilesdkrs:0.1.0") | ||
//noinspection GradleCompatible | ||
implementation("com.android.support:appcompat-v7:28.0.0") | ||
/* Begin UI dependencies */ | ||
implementation("androidx.compose.material3:material3:1.2.1") | ||
implementation("androidx.camera:camera-camera2:1.3.2") | ||
implementation("androidx.camera:camera-lifecycle:1.3.2") | ||
implementation("androidx.camera:camera-view:1.3.2") | ||
implementation("com.google.zxing:core:3.5.1") | ||
implementation("com.google.accompanist:accompanist-permissions:0.34.0") | ||
implementation("androidx.camera:camera-mlkit-vision:1.3.0-alpha06") | ||
implementation("com.google.android.gms:play-services-mlkit-text-recognition:19.0.0") | ||
/* End UI dependencies */ | ||
implementation("androidx.datastore:datastore-preferences:1.1.1") | ||
testImplementation("junit:junit:4.13.2") | ||
androidTestImplementation("com.android.support.test:runner:1.0.2") | ||
androidTestImplementation("com.android.support.test.espresso:espresso-core:3.0.2") | ||
api("com.spruceid.mobile.sdk.rs:mobilesdkrs:0.2.1") | ||
//noinspection GradleCompatible | ||
implementation("com.android.support:appcompat-v7:28.0.0") | ||
/* Begin UI dependencies */ | ||
implementation("androidx.compose.material3:material3:1.2.1") | ||
implementation("androidx.camera:camera-camera2:1.3.2") | ||
implementation("androidx.camera:camera-lifecycle:1.3.2") | ||
implementation("androidx.camera:camera-view:1.3.2") | ||
implementation("com.google.zxing:core:3.5.1") | ||
implementation("com.google.accompanist:accompanist-permissions:0.34.0") | ||
implementation("androidx.camera:camera-mlkit-vision:1.3.0-alpha06") | ||
implementation("com.google.android.gms:play-services-mlkit-text-recognition:19.0.0") | ||
/* End UI dependencies */ | ||
implementation("androidx.datastore:datastore-preferences:1.1.1") | ||
testImplementation("junit:junit:4.13.2") | ||
androidTestImplementation("com.android.support.test:runner:1.0.2") | ||
androidTestImplementation("com.android.support.test.espresso:espresso-core:3.0.2") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.