forked from sadellie/unitto
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from Myzel394/new-improvements
New improvements
- Loading branch information
Showing
25 changed files
with
211 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Help | ||
|
||
## ⌚ Add more time zones? | ||
|
||
This is not planned. | ||
|
||
Each time zone has its' own set of rules: | ||
- Offset from GMT | ||
- Daylight saving time offset | ||
- Date when daylight saving time is used | ||
|
||
This data always changes. | ||
There are 3 solutions: | ||
|
||
### 1. Paid API service | ||
|
||
**✅Pros:** | ||
- Almost all time zones and cities | ||
- Always up-to-date | ||
|
||
**❌Cons:** | ||
- Extra money costs | ||
- Needs Internet, can go down, needs a caching mechanism | ||
- The API might change and we'd need to keep it up-to-date | ||
- Needs to be translated | ||
|
||
### 2. Create my own API service | ||
Pros and cons are same, except being a bit cheaper (you still need to pay). | ||
|
||
### 3. Android's time zone provider (this is what NumberHub uses) | ||
|
||
read more: https://source.android.com/docs/core/permissions/timezone-rules | ||
|
||
**✅Pros:** | ||
- Almost all time zones | ||
- Completely for free | ||
- No extra translations (automatically provided by the system) | ||
- No sudden API changes | ||
- Works offline, never goes down | ||
|
||
**❌Cons:** | ||
- Less cities | ||
- Less frequent updates | ||
</details> | ||
|
||
## 👩⚕️ Body Mass Index | ||
|
||
Please note that the values displayed in the app are intended for entertainment purposes only. They can not replace professional medical advice. | ||
|
||
Please don't use the Body Mass calculator if you are: | ||
- Under 21 years old | ||
- Pregnant | ||
- Diagnosed with an eating disorder | ||
|
||
Please contact your care provider for more information. | ||
|
||
## 💵 Wrong Currency Rates? | ||
Currency rates are updated daily. There's no real-time market monitoring on NumberHub. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
**Privacy Policy** | ||
|
||
This privacy policy applies to the NumberHub app (hereby referred to as "Application") for mobile devices that was created by Myzel394 (hereby referred to as "Service Provider") as an Open Source service. This service is intended for use "AS IS". | ||
|
||
**Third Party Access** | ||
|
||
The service uses external services to fetch data for the user. The Service Provider does not have control over the data that is fetched from these services. | ||
|
||
The Service Provider may disclose User Provided and Automatically Collected Information: | ||
|
||
* as required by law, such as to comply with a subpoena, or similar legal process; | ||
* when they believe in good faith that disclosure is necessary to protect their rights, protect your safety or the safety of others, investigate fraud, or respond to a government request; | ||
* with their trusted services providers who work on their behalf, do not have an independent use of the information we disclose to them, and have agreed to adhere to the rules set forth in this privacy statement. | ||
|
||
**Opt-Out Rights** | ||
|
||
You can stop all collection of information by the Application easily by uninstalling it. You may use the standard uninstall processes as may be available as part of your mobile device or via the mobile application marketplace or network. | ||
|
||
**Children** | ||
|
||
The Service Provider does not use the Application to knowingly solicit data from or market to children under the age of 13. | ||
|
||
The Service Provider does not knowingly collect personally identifiable information from children. The Service Provider encourages all children to never submit any personally identifiable information through the Application and/or Services. The Service Provider encourage parents and legal guardians to monitor their children's Internet usage and to help enforce this Policy by instructing their children never to provide personally identifiable information through the Application and/or Services without their permission. If you have reason to believe that a child has provided personally identifiable information to the Service Provider through the Application and/or Services, please contact the Service Provider ([email protected]) so that they will be able to take the necessary actions. You must also be at least 16 years of age to consent to the processing of your personally identifiable information in your country (in some countries we may allow your parent or guardian to do so on your behalf). | ||
|
||
**Security** | ||
|
||
The Service Provider is concerned about safeguarding the confidentiality of your information. The Service Provider provides physical, electronic, and procedural safeguards to protect information the Service Provider processes and maintains. | ||
|
||
**Changes** | ||
|
||
This Privacy Policy may be updated from time to time for any reason. The Service Provider will notify you of any changes to the Privacy Policy by updating this page with the new Privacy Policy. You are advised to consult this Privacy Policy regularly for any changes, as continued use is deemed approval of all changes. | ||
|
||
This privacy policy is effective as of 2024-05-15 | ||
|
||
**Your Consent** | ||
|
||
By using the Application, you are consenting to the processing of your information as set forth in this Privacy Policy now and as amended by us. | ||
|
||
**Contact Us** | ||
|
||
If you have any questions regarding privacy while using the Application, or have questions about the practices, please contact the Service Provider via email at [email protected]. | ||
|
||
* * * | ||
|
||
This privacy policy page was generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
### `com.sadellie.numberhub.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION` | ||
|
||
Read (boring): https://developer.android.com/about/versions/14/behavior-changes-14#runtime-receivers-exported | ||
|
||
### `android.permission.INTERNET` | ||
|
||
Used in **Unit Converter** to update currency rates. Requests are made only when you select a currency unit. | ||
|
||
### `android.permission.ACCESS_NETWORK_STATE` | ||
|
||
Used in Unit Converter as a callback. Retries to update currency rates if there was an error (no network, for example) and the Internet connection is back. | ||
|
||
### `android.permission.WAKE_LOCK` | ||
|
||
Not used explicitly. Added automatically by Widget feature. | ||
|
||
### `android.permission.RECEIVE_BOOT_COMPLETED` | ||
|
||
Not used explicitly. Added automatically by Widget feature. | ||
|
||
### `android.permission.FOREGROUND_SERVICE` | ||
|
||
Not used explicitly. Added automatically by Widget feature. | ||
|
||
### Non-free network service | ||
|
||
Non-free means that you can't host the given service on your machine. | ||
|
||
The app uses [Free Currency Rates API by fawazahmed0](https://github.com/fawazahmed0/exchange-api). Requests are send to `cdn.jsdelivr.net`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Calculator, converter and more | ||
Your Hub for ✖️ Math / 💲 Currency rates / 📆 Date calculations / ⌚ Time zones... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.