Skip to content

Commit

Permalink
Publish Version 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Yazan98 committed Feb 18, 2023
1 parent a7e301e commit 93d622e
Show file tree
Hide file tree
Showing 163 changed files with 425 additions and 45 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {

ext.PluginsVersions = [
"FirebasePluginV" : "4.3.1",
"NavigationPluginV" : "2.2.0-rc04",
"NavigationPluginV" : "2.5.0",
"HiltPluginVersion" : "2.28-alpha",
"NexusPublishPluginVersoin": "1.1.0"
]
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-rc-2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-rc-2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion vanite-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ android {
}

dependencies { configurations ->
implementation platform('androidx.compose:compose-bom:2022.10.00')
jetpackComposeConfiguration(configurations)
}

Expand Down Expand Up @@ -72,7 +73,6 @@ private void jetpackComposeConfiguration(configuration) {
configuration.implementation 'androidx.activity:activity-compose:1.5.1'
configuration.implementation 'androidx.compose.ui:ui'
configuration.implementation 'androidx.compose.ui:ui-graphics'
configuration.implementation 'androidx.compose.ui:ui-tooling-preview'
configuration.implementation "androidx.compose.material3:material3:1.0.1"
configuration.testImplementation 'junit:junit:4.13.2'
configuration.implementation 'com.google.android.material:material:1.8.0-alpha01'
Expand Down
6 changes: 5 additions & 1 deletion vanite-compose/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
<application>
<activity android:name=".components.VaniteErrorScreen" />
</application>

</manifest>
6 changes: 3 additions & 3 deletions vanite-data/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"

android {
compileSdkVersion rootProject.ext.ApplicationCompileV
compileSdk rootProject.ext.ApplicationCompileV

defaultConfig {
namespace 'io.vanite.android.data'
minSdkVersion rootProject.ext.MinSdkV
targetSdkVersion rootProject.ext.ApplicationCompileV
minSdk rootProject.ext.MinSdkV
targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"

Expand Down
3 changes: 1 addition & 2 deletions vanite-data/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.vanite.android.data" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />
6 changes: 3 additions & 3 deletions vanite-firebase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"

android {
compileSdkVersion rootProject.ext.ApplicationCompileV
compileSdk rootProject.ext.ApplicationCompileV

defaultConfig {
namespace 'io.vanite.android.firebase'
minSdkVersion rootProject.ext.MinSdkV
targetSdkVersion rootProject.ext.ApplicationCompileV
minSdk rootProject.ext.MinSdkV
targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"

Expand Down
2 changes: 1 addition & 1 deletion vanite-firebase/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.vanite.android.firebase" />
/>
6 changes: 3 additions & 3 deletions vanite-log/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"

android {
compileSdkVersion rootProject.ext.ApplicationCompileV
compileSdk rootProject.ext.ApplicationCompileV

defaultConfig {
namespace 'io.vanite.android.log'
minSdkVersion rootProject.ext.MinSdkV
targetSdkVersion rootProject.ext.ApplicationCompileV
minSdk rootProject.ext.MinSdkV
targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.vanite.android.log" >

<uses-sdk android:minSdkVersion="21" />

</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": 3,
"artifactType": {
"type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
"kind": "Directory"
},
"applicationId": "io.vanite.android.log",
"variantName": "release",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"outputFile": "AndroidManifest.xml"
}
],
"elementType": "File"
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
aarFormatVersion=1.0
aarMetadataVersion=1.0
minCompileSdk=1
minCompileSdkExtension=0
minAndroidGradlePluginVersion=1.0.0
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Empty file.
Binary file not shown.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/jniLibs"/></dataSet><dataSet config="release" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/release/jniLibs"/></dataSet></merger>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/shaders"/></dataSet><dataSet config="release" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/release/shaders"/></dataSet></merger>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/assets"/></dataSet><dataSet config="release" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/release/assets"/></dataSet><dataSet config="generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/build/intermediates/shader_assets/release/out"/></dataSet></merger>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#Sat Feb 18 11:09:15 EET 2023
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="release$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/release/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="release" generated-set="release$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/release/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/build/generated/res/resValues/release"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated" generated-set="generated$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/build/generated/res/resValues/release"/></dataSet><mergedItems/></merger>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
R_DEF: Internal format may change without notice
local
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="io.vanite.android.log" >
4
5 <uses-sdk android:minSdkVersion="21" />
6
7</manifest>
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.vanite.android.log" >

<uses-sdk android:minSdkVersion="21" />

</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
io.vanite.android.log
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
10
0
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
17 changes: 17 additions & 0 deletions vanite-log/build/libs/vanite-log-2.0.0-sources.jar.asc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
-----BEGIN PGP SIGNATURE-----
Version: BCPG v1.68

iQIcBAABCgAGBQJj8JX8AAoJEB1ITFGDIuUZZZIP/iKsLQ+7uFJ7XPnXCF7hsPvU
ssRg8iPV/JQJu/wRxD7vSp4Sj1RZ+uBDw332N5gBg+4j1r54qu1xsFqX2wC/wACg
5Ner9JvoSngroZ+6siUKK8Vb4lfMjWcVhnUR6b/k3YhByi3ldTHK5IXEafYyC3Qg
ojotbXYkffrLWdpB8nYqm0OJlkgAYhEcuq8AsLkfukGRo4JZ5kC1q4gpO9v38gNe
lkKG809nzafHmPbE4cpFNroNIuTvQKBK7RxJnwDpGMWmh8GOXPoiYIlOqLF6/9G6
ma/zD/c4YXtGNXz35Zf+ch+FV8ivAZzM2NmNYh8mrv64UEzNoMm4uGgfv71RJMi2
YLvVICMmLCKve2d25+Fo6HzUbaVe+V4e/5DRIQy0OQIAKsImjMzr8DPXuVGoafKy
qTlwHorAZB5EoiHpH+mk3unXSsohFo8JClDhdZ78WQ8rtd84ekjMnav+zGYMTH8m
uPVkmMCNO45gNreF/UWkYdywxy9Q4QhfHe0Kk9RYD1Ow0qq7tGhMJ/xtPlLZIMAI
TYHKHlU2P7mvCNvGwPCHArDvkeHwygVyxOfC9wKRd+Il6dmy5CmcGJKUHvwSG2Eq
ffY1VS7ADsXr2YM0by22qvYKXn0kdg7YVcHtsJkbvTApXKmr0Wb/JMjlDTFgFR8t
0gryo+krFELvl4T6C0MD
=O04j
-----END PGP SIGNATURE-----
Binary file not shown.
17 changes: 17 additions & 0 deletions vanite-log/build/outputs/aar/vanite-log-release.aar.asc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
-----BEGIN PGP SIGNATURE-----
Version: BCPG v1.68

iQIcBAABCgAGBQJj8JX9AAoJEB1ITFGDIuUZ9tcP+gJj2X7dzA7OgiJ/uZahQf08
/Zte51XofbYHFJyGytUHDz0enqfMVkluXw1d55+CqDDw1V7Aq4bGa0KdeHEa0QjI
ZkWG6+IbT1tiDH0DW1C3Y6CZ2bMHTZ8cwnAFcej3VLB1Okx64s+sa6PRq+I8/41O
d0VKE/rt9JsKRR7hAj5Gk7AxP5SwoIujBjAhFK/NbumBILaO8csbitV0k8gw+sEP
eO6j2tGKLtUNsd9vpcInNV2TH7rmwMZUkw1MK3rHX8YljoyAEVm4wOB2Ml/R9j/K
N3F9EZLRStfguowniTa2awjj9P/x3NQV4RJm5ZSOhCbZWOOFMJeyHnjQLkDeCg9c
50UKtNFLIO4r0oVJ9iosc+xEINVoqP6Lz0JyniociFTSrMIkxqxUh0OFgPWcXkfJ
RrZPI4k3GCbl3SipPMplZrt2v0iemMWaWVz1iR2psbQAzzHCZOLS7JH87U9vYpTS
DwynT1EqJj8kF3UykqIPw6NuGuByYW0PneVpjRxZnJJueadBzNW+XsnIcvsqDnBu
R7JzyIOsElEVEB8L++gnv+qgGoWLZLcnXSHxTulXNsksCGiLf63VtgenVDzA9pEk
htyafKcwxqwfRjR52LRogYHotEGYUe/Spqhoa+2HK2cAZhOn0g1JBoguyOgOAreN
2HYlhuOnR6BzKI3fyVx5
=zh8E
-----END PGP SIGNATURE-----
23 changes: 23 additions & 0 deletions vanite-log/build/outputs/logs/manifest-merger-release-report.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
-- Merging decision tree log ---
manifest
ADDED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:1-2:7
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:1-2:7
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:1-2:7
package
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
ADDED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:1-2:7
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
xmlns:android
ADDED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:11-69
uses-sdk
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml reason: use-sdk injection requested
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
android:targetSdkVersion
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
android:minSdkVersion
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
121 changes: 121 additions & 0 deletions vanite-log/build/publications/release/module.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
{
"formatVersion": "1.1",
"component": {
"group": "com.yazantarifi",
"module": "vanite-log",
"version": "2.0.0",
"attributes": {
"org.gradle.status": "release"
}
},
"createdBy": {
"gradle": {
"version": "8.0-rc-2"
}
},
"variants": [
{
"name": "releaseApiElements-published",
"attributes": {
"org.gradle.category": "library",
"org.gradle.usage": "java-api",
"org.jetbrains.kotlin.platform.type": "androidJvm"
},
"files": [
{
"name": "vanite-log-2.0.0.aar",
"url": "vanite-log-2.0.0.aar",
"size": 19318,
"sha512": "294f0bd5d255ebe1492d289719e209cc6f22c18ad64c0c37a9b9dbc6c870cbd8a5dc9ab2e049e1c2497a3f837d1dee2377b9a670e7710781f74dc031c1b40ce2",
"sha256": "1d8f06374f3f67cb39dd407ae4a51f754beb48e6c97477faa9d17130a6aa8d73",
"sha1": "6639c9b24898cbb02593350ff20dd676addf13a9",
"md5": "78cb4ff1d47705fd5d48bb062bbfc163"
}
]
},
{
"name": "releaseRuntimeElements-published",
"attributes": {
"org.gradle.category": "library",
"org.gradle.usage": "java-runtime",
"org.jetbrains.kotlin.platform.type": "androidJvm"
},
"dependencies": [
{
"group": "org.jetbrains.kotlin",
"module": "kotlin-android-extensions-runtime",
"version": {
"requires": "1.7.20"
}
},
{
"group": "org.jetbrains.kotlin",
"module": "kotlin-stdlib-jdk7",
"version": {
"requires": "null"
}
},
{
"group": "io.reactivex.rxjava2",
"module": "rxjava",
"version": {
"requires": "2.2.12"
}
},
{
"group": "io.reactivex.rxjava2",
"module": "rxandroid",
"version": {
"requires": "2.1.1"
}
},
{
"group": "org.jetbrains.kotlinx",
"module": "kotlinx-coroutines-core",
"version": {
"requires": "1.4.3"
}
},
{
"group": "org.jetbrains.kotlinx",
"module": "kotlinx-coroutines-android",
"version": {
"requires": "1.4.3"
}
},
{
"group": "androidx.appcompat",
"module": "appcompat",
"version": {
"requires": "1.3.1"
}
},
{
"group": "androidx.core",
"module": "core-ktx",
"version": {
"requires": "1.6.0"
}
},
{
"group": "com.yazantarifi",
"module": "vanite",
"version": {
"requires": "2.0.0"
}
}
],
"files": [
{
"name": "vanite-log-2.0.0.aar",
"url": "vanite-log-2.0.0.aar",
"size": 19318,
"sha512": "294f0bd5d255ebe1492d289719e209cc6f22c18ad64c0c37a9b9dbc6c870cbd8a5dc9ab2e049e1c2497a3f837d1dee2377b9a670e7710781f74dc031c1b40ce2",
"sha256": "1d8f06374f3f67cb39dd407ae4a51f754beb48e6c97477faa9d17130a6aa8d73",
"sha1": "6639c9b24898cbb02593350ff20dd676addf13a9",
"md5": "78cb4ff1d47705fd5d48bb062bbfc163"
}
]
}
]
}
17 changes: 17 additions & 0 deletions vanite-log/build/publications/release/module.json.asc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
-----BEGIN PGP SIGNATURE-----
Version: BCPG v1.68

iQIcBAABCgAGBQJj8JX9AAoJEB1ITFGDIuUZaLcP/34UXjO0H7ypNZg9cjMXwteU
i94Cpi+4zOJPvrSXNngkOTQ+oKhSDUIZyPy8CaW2R0nwASMbzcy2PeNFh9NAWANi
KM0+V2sprIwo3mXlPvZ4H/TQJdtib5MJnggkQHc73PuIHtBIIyjnDn8vxTlQDxB+
3gB5m6BBAZw5ngjOHVkd99J1t02qkXoNuuUbi9A2LJy7sVAC0LEg68PTrbrdXcVK
vMJMthzA1GUsg+cgCp9yap/GV1CRug1049G7XUw2+6CaWKklw0mW0iCWmnVs0y3g
fVyin5sADTTww0fM3bS9Yvv5rXn/TfrkvMDvcOV7AeranpxHYgNn9RJWFot5u+Em
JuUvBwdpKcs2L4Hy2FP5C6QjbOUdhiGmaZ8J1Q5fVsD0mrOQiW87k6YdcFgXxrTs
ceLkVNr1DTo68oFKx7HU+zgwAuFZcZnpTi9Mqp3tRwlWDT0lzO9X+UTjcx6v2QuO
v8ZSGrUPItbhobWHcgi2VBxv/tv8SvMy0hqeiQhD/KzOBZL2tnrvT7YXALI5wjoO
JScFO3m71jRxhTf6wbMS0a23wzwGAODjMemBRy3AHTltw2pmg01TOogGKyFzEihD
BJkF8DyLXpQknoobeco8/CLQNncaDHGKa5bdF64TRiIRd+D2PmQeJO6Cnl89o65C
p9aAzo7Uc1/nRNjnb9+Y
=DS2C
-----END PGP SIGNATURE-----
Loading

0 comments on commit 93d622e

Please sign in to comment.