Mercurial
annotate gara/android/tutorial/src/main/java/com/example/bazel/Greeter.java @ 71:75de5903355c
Giagantic changes that update Dowa library to be more align with stb style array and hashmap. Updated Seobeo to be caching on server side instead of file level caching. Deleted bunch of things I don't really use.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Sun, 28 Dec 2025 20:34:22 -0800 |
| parents | b9a40c633c93 |
| children |
| rev | line source |
|---|---|
|
46
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
1 package com.example.bazel; |
|
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
2 |
|
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
3 /** |
|
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
4 * A tiny Greeter library for the Bazel Android "Hello, World" app. |
|
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
5 */ |
|
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
6 public class Greeter { |
|
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
7 public String sayHello() { |
|
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
8 return "Hello Bazel! \uD83D\uDC4B\uD83C\uDF31"; // Unicode for 👋🌱 |
|
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
9 } |
|
b9a40c633c93
[Gara] Adding sample android app which will be use C logic for peer to peer connection.
MrJuneJune <me@mrjunejune.com>
parents:
diff
changeset
|
10 } |