-
Notifications
You must be signed in to change notification settings - Fork 119
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
chore: Remaining renaming to Hiero #2150
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ bin/ | |
gradle.properties | ||
.DS_Store | ||
/examples/address-book.proto.bin | ||
local.properties |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,49 +1,57 @@ | ||||||
# Hedera™ Hashgraph Java SDK | ||||||
# Hiero Java SDK | ||||||
|
||||||
![](https://img.shields.io/badge/java-17%2B-blue?style=flat-square) | ||||||
![](https://img.shields.io/badge/android-26%2B-blue?style=flat-square) | ||||||
[![](https://img.shields.io/github/actions/workflow/status/hashgraph/hedera-sdk-java/build.yml?style=flat-square)](https://github.com/hashgraph/hedera-sdk-java/actions) | ||||||
[![](https://img.shields.io/maven-central/v/com.hedera.hashgraph/sdk/2?label=maven&style=flat-square)](https://search.maven.org/artifact/com.hedera.hashgraph/sdk) | ||||||
|
||||||
> The Java SDK for interacting with Hedera Hashgraph: the official distributed | ||||||
> The Java SDK for interacting with Hiero: the official distributed | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
> consensus platform built using the hashgraph consensus algorithm for fast, | ||||||
> fair and secure transactions. Hedera enables and empowers developers to | ||||||
> fair and secure transactions. Hiero enables and empowers developers to | ||||||
> build an entirely new class of decentralized applications. | ||||||
|
||||||
**NOTE**: v1 of the SDK is deprecated and support was discontinued after October 2021. | ||||||
Please install the latest version 2.x.x or migrate from v1 to the latest 2.x.x version. | ||||||
You can reference the [migration documentation](docs/sdk/MIGRATING_V1.md). | ||||||
|
||||||
## Java app quickstart | ||||||
|
||||||
[The Java application quickstart guide](docs/java-app/java-app-quickstart.md) covers how to properly set up the dependencies | ||||||
needed to start developing your Java project using the Hedera™ Java SDK. | ||||||
needed to start developing your Java project using the Hiero Java SDK. | ||||||
|
||||||
## Android app quickstart | ||||||
|
||||||
[The Android application quickstart guide](docs/android-app/android-app-quickstart.md) covers how to properly set up the dependencies | ||||||
needed to start developing your Android project using the Hedera™ Java SDK. | ||||||
needed to start developing your Android project using the Hiero Java SDK. | ||||||
|
||||||
## Examples | ||||||
|
||||||
This repository includes [Java examples](examples/README.md) and [an Android example](example-android/README.md) | ||||||
that showcase different use cases and workflows. | ||||||
|
||||||
## Developer quickstart | ||||||
|
||||||
The [developer quickstart guide](docs/sdk/developer-guide.md) provides instructions on how to set up the environment, | ||||||
run unit and integration tests, and configure the project to work with different networks | ||||||
such as the Hedera test network, preview network, etc. | ||||||
such as the Hiero test network, preview network, etc. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. needs to be reverted |
||||||
|
||||||
## Support | ||||||
|
||||||
If you have a question on how to use the product, please see our | ||||||
[support guide](https://github.com/hashgraph/.github/blob/main/SUPPORT.md). | ||||||
|
||||||
## Contributing | ||||||
|
||||||
We welcome participation from all developers!\ | ||||||
For instructions on how to contribute to this repo, please | ||||||
review the [Contributing Guide](docs/sdk/CONTRIBUTING.md).\ | ||||||
More instructions for contribution can be found in the [Global Contributing Guide](https://github.com/hashgraph/.github/blob/main/CONTRIBUTING.md). | ||||||
|
||||||
## Code of Conduct | ||||||
|
||||||
This project is governed by the [Contributor Covenant Code of Conduct](https://github.com/hashgraph/.github/blob/main/CODE_OF_CONDUCT.md). By participating, you are | ||||||
expected to uphold this code of conduct. | ||||||
|
||||||
## License | ||||||
|
||||||
[Apache License 2.0](LICENSE) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
package com.hedera.android_example.ui.main | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should do this in multiple steps. This PR is too big to not oversee any issue ;) |
||
package org.hiero.android_example.ui.main | ||
|
||
import android.os.Bundle | ||
import android.view.LayoutInflater | ||
|
@@ -11,8 +11,8 @@ import android.widget.ProgressBar | |
import android.widget.TextView | ||
import androidx.fragment.app.Fragment | ||
import androidx.lifecycle.lifecycleScope | ||
import com.hedera.android_example.R | ||
import com.hedera.hashgraph.sdk.* | ||
import org.hiero.android_example.R | ||
import org.hiero.sdk.* | ||
import kotlinx.coroutines.CoroutineScope | ||
import kotlinx.coroutines.Dispatchers | ||
import kotlinx.coroutines.launch | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
org.hiero.sdk=org.hiero.sdk:sdk | ||
org.hiero.sdk.full=org.hiero.sdk:sdk-full |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be done bore the SDK is transfered to Hiero