-
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.
Merge pull request #75 from velocitycareerlabs/rc-to-main
Rc to main
- Loading branch information
Showing
70 changed files
with
1,405 additions
and
317 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: WalletAndroid-SDK-Tests | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- rc | ||
- dev | ||
env: | ||
PACKAGE_TYPE: "aar" | ||
GRADLE_VERSION: "7.5" | ||
JAVA_VERSION: "17" | ||
ARTIFACT_PATH: "VCL/build/outputs" | ||
ANDROID_NEXUS_SIGNING_KEY_ID: ${{ secrets.ANDROID_NEXUS_SIGNING_KEY_ID }} | ||
ANDROID_NEXUS_SIGNING_PWD: ${{ secrets.ANDROID_NEXUS_SIGNING_PWD }} | ||
ANDROID_NEXUS_OSSRH_USERNAME: ${{ secrets.ANDROID_NEXUS_OSSRH_USERNAME }} | ||
ANDROID_NEXUS_OSSRH_PWD: ${{ secrets.ANDROID_NEXUS_OSSRH_PWD }} | ||
ANDROID_NEXUS_STAGING_PROFILE_ID: ${{ secrets.ANDROID_NEXUS_STAGING_PROFILE_ID }} | ||
ANDROID_NEXUS_PRIVATE_KEY: ${{ secrets.ANDROID_NEXUS_PRIVATE_KEY }} | ||
jobs: | ||
test-android-sdk: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git clone repository | ||
uses: actions/checkout@v4 | ||
# Setup java | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: ${{ env.JAVA_VERSION }} | ||
# Run test | ||
- name: Run Test | ||
run: ./gradlew test |
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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: WalletAndroid-SDK | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- rc | ||
- dev | ||
env: | ||
PACKAGE_TYPE: "aar" | ||
GRADLE_VERSION: "7.5" | ||
JAVA_VERSION: "17" | ||
ARTIFACT_PATH: "VCL/build/outputs" | ||
ANDROID_NEXUS_SIGNING_KEY_ID: ${{ secrets.ANDROID_NEXUS_SIGNING_KEY_ID }} | ||
ANDROID_NEXUS_SIGNING_PWD: ${{ secrets.ANDROID_NEXUS_SIGNING_PWD }} | ||
ANDROID_NEXUS_OSSRH_USERNAME: ${{ secrets.ANDROID_NEXUS_OSSRH_USERNAME }} | ||
ANDROID_NEXUS_OSSRH_PWD: ${{ secrets.ANDROID_NEXUS_OSSRH_PWD }} | ||
ANDROID_NEXUS_STAGING_PROFILE_ID: ${{ secrets.ANDROID_NEXUS_STAGING_PROFILE_ID }} | ||
ANDROID_NEXUS_PRIVATE_KEY: ${{ secrets.ANDROID_NEXUS_PRIVATE_KEY }} | ||
jobs: | ||
test-android-sdk: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git clone repository | ||
uses: actions/checkout@v4 | ||
# Setup java | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: ${{ env.JAVA_VERSION }} | ||
# Run test | ||
- name: Run Test | ||
run: ./gradlew test | ||
|
||
build-android-sdk: | ||
runs-on: ubuntu-latest | ||
needs: | ||
- test-android-sdk | ||
steps: | ||
- name: Git clone repository | ||
uses: actions/checkout@v4 | ||
# Setup java | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: ${{ env.JAVA_VERSION }} | ||
# Gradle Assemble | ||
- name: Gradle Assemble | ||
run: ./gradlew assemble${{ env.RELEASE_TAG }} | ||
env: | ||
RELEASE_TAG: ${{ github.ref == 'refs/heads/main' && format('{0}', 'Release' ) || 'Rc' }} | ||
# Convert artifact to lowercase | ||
- name: Rename artifact to lowercase | ||
run: mv ${{ env.ARTIFACT_PATH}}/${{ env.PACKAGE_TYPE }}/VCL-${{ env.RELEASE_TAG }}.${{ env.PACKAGE_TYPE }} ${{ env.ARTIFACT_PATH }}/${{ env.PACKAGE_TYPE }}/vcl-${{ env.RELEASE_TAG }}.${{ env.PACKAGE_TYPE }} | ||
env: | ||
RELEASE_TAG: ${{ github.ref == 'refs/heads/main' && format('{0}', 'release' ) || 'rc' }} | ||
# Show Me Builded packages | ||
- name: Show Me Builded packages | ||
run: ls -al ${{ env.ARTIFACT_PATH}}/${{ env.PACKAGE_TYPE }}/ | ||
# Publish Main/Rc | ||
- name: Publish Main/Rc | ||
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/rc' }} | ||
run: ./gradlew publish${{ env.RELEASE_TAG }} | ||
env: | ||
RELEASE_TAG: ${{ github.ref == 'refs/heads/main' && format('{0}', 'Release' ) || 'Rc' }} | ||
# Upload Artifacts | ||
- name: Upload Artifact | ||
if: success() | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: vcl-${{ env.RELEASE_TAG }}.${{ env.PACKAGE_TYPE }} | ||
path: ${{ env.ARTIFACT_PATH }}/${{ env.PACKAGE_TYPE }} | ||
if-no-files-found: error | ||
retention-days: 1 | ||
env: | ||
RELEASE_TAG: ${{ github.ref == 'refs/heads/main' && format('{0}', 'release' ) || 'rc' }} | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
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 |
---|---|---|
|
@@ -13,8 +13,8 @@ android { | |
defaultConfig { | ||
minSdk 24 | ||
targetSdk 33 | ||
versionName "1.20.1" | ||
versionCode 115 | ||
versionName "1.23.0" | ||
versionCode 119 | ||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles "consumer-rules.pro" | ||
} | ||
|
@@ -41,6 +41,13 @@ android { | |
shrinkResources false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
rc { | ||
buildConfigField "String", "VERSION_NAME", "\"${defaultConfig.versionName}-rc\"" | ||
buildConfigField "int", "VERSION_CODE", "${defaultConfig.versionCode}" | ||
minifyEnabled false | ||
shrinkResources false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
|
||
compileOptions { | ||
|
@@ -96,6 +103,54 @@ artifacts { | |
afterEvaluate { | ||
publishing { | ||
publications { | ||
rc(MavenPublication) { | ||
groupId getGroupId() | ||
artifactId getArtifactId() | ||
|
||
// define rc version name | ||
def vers = getVersionName() | ||
def rcSuffix = rootProject.ext.rcSuffix | ||
version = "${vers}-${rcSuffix}" | ||
|
||
// Two artifacts, the `aar` (or `jar`) and the sources | ||
if (project.plugins.findPlugin("com.android.library")) { | ||
from components.release | ||
} else { | ||
from components.java | ||
} | ||
|
||
artifact androidSourcesJar | ||
|
||
// Mostly self-explanatory metadata | ||
pom { | ||
name = getArtifactId() | ||
// Library description | ||
description = 'Velocity Career Labs Android library' | ||
// Library Github URL | ||
url = 'https://github.com/velocitycareerlabs/WalletAndroid' | ||
licenses { | ||
license { | ||
name = 'Apache License 2.0' | ||
// Library license | ||
url = 'https://github.com/velocitycareerlabs/WalletAndroid/blob/dev/VCL/LICENSE' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id = 'velocitycareerlabs' | ||
name = 'Michael Avoyan' | ||
email = '[email protected]' | ||
} | ||
} | ||
|
||
scm { | ||
// Library info on Github | ||
connection = 'scm:github.com/velocitycareerlabs/WalletAndroid.git' | ||
developerConnection = 'scm:git:ssh://github.com/velocitycareerlabs/WalletAndroid.git' | ||
url = 'https://github.com/velocitycareerlabs/WalletAndroid' | ||
} | ||
} | ||
} | ||
release(MavenPublication) { | ||
groupId getGroupId() | ||
artifactId getArtifactId() | ||
|
@@ -142,15 +197,14 @@ afterEvaluate { | |
} | ||
} | ||
} | ||
} | ||
|
||
signing { | ||
useInMemoryPgpKeys( | ||
rootProject.ext.signingKeyId, | ||
rootProject.ext.signingPrivateKey, | ||
rootProject.ext.signingPassword, | ||
) | ||
sign publishing.publications | ||
signing { | ||
useInMemoryPgpKeys( | ||
rootProject.ext.signingKeyId, | ||
rootProject.ext.signingPrivateKey, | ||
rootProject.ext.signingPassword, | ||
) | ||
sign publishing.publications | ||
} | ||
} | ||
|
||
repositories { | ||
|
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
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
22 changes: 22 additions & 0 deletions
22
VCL/src/main/java/io/velocitycareerlabs/api/entities/VCLOffer.kt
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/** | ||
* Created by Michael Avoyan on 10/12/2023. | ||
* | ||
* Copyright 2022 Velocity Career Labs inc. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package io.velocitycareerlabs.api.entities | ||
|
||
import org.json.JSONObject | ||
|
||
data class VCLOffer(val payload: JSONObject) { | ||
val issuerId: String get() = payload.optJSONObject(CodingKeys.KeyIssuer)?.optString(KeyId) | ||
?: payload.optString(CodingKeys.KeyIssuer) | ||
?: "" | ||
val id: String get() = payload.optString(CodingKeys.KeyId) ?: "" | ||
|
||
companion object CodingKeys { | ||
const val KeyId = "id" | ||
const val KeyDid = "did" | ||
const val KeyIssuer = "issuer" | ||
} | ||
} |
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.