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

iOS project and script bindings #1286

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
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/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ updates:

# Maintain dependencies for Gradle
- package-ecosystem: "gradle"
directory: "/aries/agents/mobile_demo/app"
directory: "/aries/agents/android/app"
schedule:
interval: "weekly"
day: "monday"
Expand All @@ -87,7 +87,7 @@ updates:

# Maintain dependencies for Gradle
- package-ecosystem: "gradle"
directory: "/aries/agents/mobile_demo"
directory: "/aries/agents/android"
schedule:
interval: "weekly"
day: "monday"
Expand Down
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion aries/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
## Aries mobile 📱 components

- [`uniffi-aries-vcx`](wrappers/uniffi-aries-vcx) - UniFFI wrapper for `aries_vcx`.
- [`mobile-demo`](agents/mobile_demo/) - Sample Android App using UniFFI wrapper.
- [`android`](agents/android/) - Sample Android App using UniFFI wrapper.
- [`ios`](agents/ios/) - Sample Android App using UniFFI wrapper.
3 changes: 2 additions & 1 deletion aries/agents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ This directory contains some of Rust agents built on top of the `aries_vcx` crat

- [`aries-vcx-agent`](./aries-vcx-agent) - aries agent library used to build our cross-framework testing [backchannel](https://github.com/hyperledger/aries-agent-test-harness/tree/main/aries-backchannels/aries-vcx). Not intended for production use. A new Aries VCX Framework is in development to provide simple, easy to use, and production ready functions for use.
- [`mediator`](./mediator) - didcomm mediator service
- [`mobile-demo`](./mobile_demo) - android mobile app demo created using UniFFI bindings for aries-vcx library
- [`android`](./android) - android mobile app demo created using UniFFI bindings for aries-vcx library
- [`ios`](./ios) - iOS mobile app demo created using UniFFI bindings for aries-vcx library
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.3.2'
kotlinCompilerExtensionVersion '1.5.14'
}
packagingOptions {
resources {
Expand Down
File renamed without changes.
File renamed without changes.
Loading