mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-05-29 21:57:42 +02:00
25 lines
517 B
Markdown
25 lines
517 B
Markdown
|
# AIDL Client
|
||
|
|
||
|
Finally, we can create a Rust client for our new service.
|
||
|
|
||
|
*birthday_service/src/client.rs*:
|
||
|
|
||
|
```rust,ignore
|
||
|
{{#include birthday_service/src/client.rs:main}}
|
||
|
```
|
||
|
|
||
|
*birthday_service/Android.bp*:
|
||
|
|
||
|
```javascript
|
||
|
{{#include birthday_service/Android.bp:birthday_client}}
|
||
|
```
|
||
|
|
||
|
Notice that the client does not depend on `libbirthdayservice`.
|
||
|
|
||
|
Build, push, and run the client on your device:
|
||
|
|
||
|
```shell
|
||
|
{{#include ../build_all.sh:birthday_client}}
|
||
|
Happy Birthday Charlie, congratulations with the 60 years!
|
||
|
```
|